1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-15 20:25:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

自动生成数据库映射文件

This commit is contained in:
2022-03-12 18:56:57 +08:00
parent fe5bd2080d
commit 3813f54c5e
25 changed files with 2995 additions and 7 deletions

View File

@@ -0,0 +1,69 @@
package plus.bookshelf.Dao.DO;
public class FileDOKey {
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_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_info.book_id
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
private Integer bookId;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_info.id
*
* @return the value of file_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_info.id
*
* @param id the value for file_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_info.book_id
*
* @return the value of file_info.book_id
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public Integer getBookId() {
return bookId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_info.book_id
*
* @param bookId the value for file_info.book_id
*
* @mbg.generated Sat Mar 12 18:53:08 SGT 2022
*/
public void setBookId(Integer bookId) {
this.bookId = bookId;
}
}