| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.minpay.db.table.model;
- import com.startup.minpay.frame.data.AbstractMINBean;
- public class PubFileResources extends AbstractMINBean {
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_file_resources.FRS_NO
- *
- * @mbggenerated
- */
- private String no;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_file_resources.FRS_TYPE
- *
- * @mbggenerated
- */
- private String type;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_file_resources.FRS_SOURCE
- *
- * @mbggenerated
- */
- private String source;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_file_resources.FRS_FILE_NAME
- *
- * @mbggenerated
- */
- private String fileName;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_file_resources.FRS_FILE_URL
- *
- * @mbggenerated
- */
- private String fileUrl;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database column pub_file_resources.FRS_CREATETIME
- *
- * @mbggenerated
- */
- private String createtime;
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_file_resources.FRS_NO
- *
- * @return the value of pub_file_resources.FRS_NO
- *
- * @mbggenerated
- */
- public String getNo() {
- return no;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_file_resources.FRS_NO
- *
- * @param no the value for pub_file_resources.FRS_NO
- *
- * @mbggenerated
- */
- public void setNo(String no) {
- this.no = no == null ? null : no.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_file_resources.FRS_TYPE
- *
- * @return the value of pub_file_resources.FRS_TYPE
- *
- * @mbggenerated
- */
- public String getType() {
- return type;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_file_resources.FRS_TYPE
- *
- * @param type the value for pub_file_resources.FRS_TYPE
- *
- * @mbggenerated
- */
- public void setType(String type) {
- this.type = type == null ? null : type.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_file_resources.FRS_SOURCE
- *
- * @return the value of pub_file_resources.FRS_SOURCE
- *
- * @mbggenerated
- */
- public String getSource() {
- return source;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_file_resources.FRS_SOURCE
- *
- * @param source the value for pub_file_resources.FRS_SOURCE
- *
- * @mbggenerated
- */
- public void setSource(String source) {
- this.source = source == null ? null : source.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_file_resources.FRS_FILE_NAME
- *
- * @return the value of pub_file_resources.FRS_FILE_NAME
- *
- * @mbggenerated
- */
- public String getFileName() {
- return fileName;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_file_resources.FRS_FILE_NAME
- *
- * @param fileName the value for pub_file_resources.FRS_FILE_NAME
- *
- * @mbggenerated
- */
- public void setFileName(String fileName) {
- this.fileName = fileName == null ? null : fileName.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_file_resources.FRS_FILE_URL
- *
- * @return the value of pub_file_resources.FRS_FILE_URL
- *
- * @mbggenerated
- */
- public String getFileUrl() {
- return fileUrl;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_file_resources.FRS_FILE_URL
- *
- * @param fileUrl the value for pub_file_resources.FRS_FILE_URL
- *
- * @mbggenerated
- */
- public void setFileUrl(String fileUrl) {
- this.fileUrl = fileUrl == null ? null : fileUrl.trim();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method returns the value of the database column pub_file_resources.FRS_CREATETIME
- *
- * @return the value of pub_file_resources.FRS_CREATETIME
- *
- * @mbggenerated
- */
- public String getCreatetime() {
- return createtime;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method sets the value of the database column pub_file_resources.FRS_CREATETIME
- *
- * @param createtime the value for pub_file_resources.FRS_CREATETIME
- *
- * @mbggenerated
- */
- public void setCreatetime(String createtime) {
- this.createtime = createtime == null ? null : createtime.trim();
- }
- }
|