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(); } }