1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-12 11:41:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
Files
bookshelfplus/bookshelfplus/src/main/java/plus/bookshelf/Dao/DO/FileObjectDO.java

234 lines
6.9 KiB
Java

package plus.bookshelf.Dao.DO;
public class FileObjectDO {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_object_info.id
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private Integer id;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_object_info.fileId
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private Integer fileid;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_object_info.storage_medium_type
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private Byte storageMediumType;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_object_info.file_path
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private String filePath;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_object_info.file_pwd
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private String filePwd;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_object_info.file_share_code
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private String fileShareCode;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_object_info.additional_fields
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private String additionalFields;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_object_info.id
*
* @return the value of file_object_info.id
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public Integer getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_object_info.id
*
* @param id the value for file_object_info.id
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setId(Integer id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_object_info.fileId
*
* @return the value of file_object_info.fileId
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public Integer getFileid() {
return fileid;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_object_info.fileId
*
* @param fileid the value for file_object_info.fileId
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setFileid(Integer fileid) {
this.fileid = fileid;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_object_info.storage_medium_type
*
* @return the value of file_object_info.storage_medium_type
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public Byte getStorageMediumType() {
return storageMediumType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_object_info.storage_medium_type
*
* @param storageMediumType the value for file_object_info.storage_medium_type
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setStorageMediumType(Byte storageMediumType) {
this.storageMediumType = storageMediumType;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_object_info.file_path
*
* @return the value of file_object_info.file_path
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public String getFilePath() {
return filePath;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_object_info.file_path
*
* @param filePath the value for file_object_info.file_path
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setFilePath(String filePath) {
this.filePath = filePath == null ? null : filePath.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_object_info.file_pwd
*
* @return the value of file_object_info.file_pwd
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public String getFilePwd() {
return filePwd;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_object_info.file_pwd
*
* @param filePwd the value for file_object_info.file_pwd
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setFilePwd(String filePwd) {
this.filePwd = filePwd == null ? null : filePwd.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_object_info.file_share_code
*
* @return the value of file_object_info.file_share_code
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public String getFileShareCode() {
return fileShareCode;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_object_info.file_share_code
*
* @param fileShareCode the value for file_object_info.file_share_code
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setFileShareCode(String fileShareCode) {
this.fileShareCode = fileShareCode == null ? null : fileShareCode.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_object_info.additional_fields
*
* @return the value of file_object_info.additional_fields
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public String getAdditionalFields() {
return additionalFields;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_object_info.additional_fields
*
* @param additionalFields the value for file_object_info.additional_fields
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setAdditionalFields(String additionalFields) {
this.additionalFields = additionalFields == null ? null : additionalFields.trim();
}
}