mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-21 01:10:39 +08:00
配置mybatis-generator,使其生成映射文件时不在注释中添加日期
This commit is contained in:
@@ -6,7 +6,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
@@ -15,7 +15,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.book_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String bookName;
|
||||
|
||||
@@ -24,7 +24,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.category_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer categoryId;
|
||||
|
||||
@@ -33,7 +33,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.publishing_house
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String publishingHouse;
|
||||
|
||||
@@ -42,7 +42,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.language
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String language;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.copyright
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String copyright;
|
||||
|
||||
@@ -60,7 +60,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.is_delete
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Boolean isDelete;
|
||||
|
||||
@@ -69,7 +69,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.thumbnail
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String thumbnail;
|
||||
|
||||
@@ -78,7 +78,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.author
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String author;
|
||||
|
||||
@@ -87,7 +87,7 @@ public class BookDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column book_info.description
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String description;
|
||||
|
||||
@@ -97,7 +97,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getId() {
|
||||
return id;
|
||||
@@ -109,7 +109,7 @@ public class BookDO {
|
||||
*
|
||||
* @param id the value for book_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
@@ -121,7 +121,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.book_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getBookName() {
|
||||
return bookName;
|
||||
@@ -133,7 +133,7 @@ public class BookDO {
|
||||
*
|
||||
* @param bookName the value for book_info.book_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setBookName(String bookName) {
|
||||
this.bookName = bookName == null ? null : bookName.trim();
|
||||
@@ -145,7 +145,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.category_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getCategoryId() {
|
||||
return categoryId;
|
||||
@@ -157,7 +157,7 @@ public class BookDO {
|
||||
*
|
||||
* @param categoryId the value for book_info.category_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setCategoryId(Integer categoryId) {
|
||||
this.categoryId = categoryId;
|
||||
@@ -169,7 +169,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.publishing_house
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getPublishingHouse() {
|
||||
return publishingHouse;
|
||||
@@ -181,7 +181,7 @@ public class BookDO {
|
||||
*
|
||||
* @param publishingHouse the value for book_info.publishing_house
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setPublishingHouse(String publishingHouse) {
|
||||
this.publishingHouse = publishingHouse == null ? null : publishingHouse.trim();
|
||||
@@ -193,7 +193,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.language
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getLanguage() {
|
||||
return language;
|
||||
@@ -205,7 +205,7 @@ public class BookDO {
|
||||
*
|
||||
* @param language the value for book_info.language
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setLanguage(String language) {
|
||||
this.language = language == null ? null : language.trim();
|
||||
@@ -217,7 +217,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.copyright
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getCopyright() {
|
||||
return copyright;
|
||||
@@ -229,7 +229,7 @@ public class BookDO {
|
||||
*
|
||||
* @param copyright the value for book_info.copyright
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setCopyright(String copyright) {
|
||||
this.copyright = copyright == null ? null : copyright.trim();
|
||||
@@ -241,7 +241,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.is_delete
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Boolean getIsDelete() {
|
||||
return isDelete;
|
||||
@@ -253,7 +253,7 @@ public class BookDO {
|
||||
*
|
||||
* @param isDelete the value for book_info.is_delete
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setIsDelete(Boolean isDelete) {
|
||||
this.isDelete = isDelete;
|
||||
@@ -265,7 +265,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.thumbnail
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getThumbnail() {
|
||||
return thumbnail;
|
||||
@@ -277,7 +277,7 @@ public class BookDO {
|
||||
*
|
||||
* @param thumbnail the value for book_info.thumbnail
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setThumbnail(String thumbnail) {
|
||||
this.thumbnail = thumbnail == null ? null : thumbnail.trim();
|
||||
@@ -289,7 +289,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.author
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return author;
|
||||
@@ -301,7 +301,7 @@ public class BookDO {
|
||||
*
|
||||
* @param author the value for book_info.author
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setAuthor(String author) {
|
||||
this.author = author == null ? null : author.trim();
|
||||
@@ -313,7 +313,7 @@ public class BookDO {
|
||||
*
|
||||
* @return the value of book_info.description
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
@@ -325,7 +325,7 @@ public class BookDO {
|
||||
*
|
||||
* @param description the value for book_info.description
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
|
@@ -6,7 +6,7 @@ public class CategoryDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column category_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
@@ -15,7 +15,7 @@ public class CategoryDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column category_info.name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String name;
|
||||
|
||||
@@ -24,7 +24,7 @@ public class CategoryDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column category_info.is_show
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Boolean isShow;
|
||||
|
||||
@@ -33,7 +33,7 @@ public class CategoryDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column category_info.order
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer order;
|
||||
|
||||
@@ -42,7 +42,7 @@ public class CategoryDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column category_info.level
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer level;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class CategoryDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column category_info.parent_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer parentId;
|
||||
|
||||
@@ -60,7 +60,7 @@ public class CategoryDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column category_info.description
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String description;
|
||||
|
||||
@@ -70,7 +70,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @return the value of category_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getId() {
|
||||
return id;
|
||||
@@ -82,7 +82,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @param id the value for category_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
@@ -94,7 +94,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @return the value of category_info.name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
@@ -106,7 +106,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @param name the value for category_info.name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name == null ? null : name.trim();
|
||||
@@ -118,7 +118,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @return the value of category_info.is_show
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Boolean getIsShow() {
|
||||
return isShow;
|
||||
@@ -130,7 +130,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @param isShow the value for category_info.is_show
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setIsShow(Boolean isShow) {
|
||||
this.isShow = isShow;
|
||||
@@ -142,7 +142,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @return the value of category_info.order
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getOrder() {
|
||||
return order;
|
||||
@@ -154,7 +154,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @param order the value for category_info.order
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setOrder(Integer order) {
|
||||
this.order = order;
|
||||
@@ -166,7 +166,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @return the value of category_info.level
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getLevel() {
|
||||
return level;
|
||||
@@ -178,7 +178,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @param level the value for category_info.level
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
@@ -190,7 +190,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @return the value of category_info.parent_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getParentId() {
|
||||
return parentId;
|
||||
@@ -202,7 +202,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @param parentId the value for category_info.parent_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setParentId(Integer parentId) {
|
||||
this.parentId = parentId;
|
||||
@@ -214,7 +214,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @return the value of category_info.description
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
@@ -226,7 +226,7 @@ public class CategoryDO {
|
||||
*
|
||||
* @param description the value for category_info.description
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setDescription(String description) {
|
||||
this.description = description == null ? null : description.trim();
|
||||
|
@@ -8,7 +8,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
@@ -17,7 +17,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.book_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer bookId;
|
||||
|
||||
@@ -26,7 +26,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.file_display_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String fileDisplayName;
|
||||
|
||||
@@ -35,7 +35,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.file_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String fileName;
|
||||
|
||||
@@ -44,7 +44,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.file_format
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String fileFormat;
|
||||
|
||||
@@ -53,7 +53,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.number_of_pages
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer numberOfPages;
|
||||
|
||||
@@ -62,7 +62,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.watermark
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Boolean watermark;
|
||||
|
||||
@@ -71,7 +71,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.advertising
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Boolean advertising;
|
||||
|
||||
@@ -80,7 +80,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.book_origin
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Byte bookOrigin;
|
||||
|
||||
@@ -89,7 +89,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.thumbnail
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String thumbnail;
|
||||
|
||||
@@ -98,7 +98,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.file_create_at
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Date fileCreateAt;
|
||||
|
||||
@@ -107,7 +107,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.file_modified_at
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Date fileModifiedAt;
|
||||
|
||||
@@ -116,7 +116,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.file_size
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer fileSize;
|
||||
|
||||
@@ -125,7 +125,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.hash_md5
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String hashMd5;
|
||||
|
||||
@@ -134,7 +134,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.hash_sha1
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String hashSha1;
|
||||
|
||||
@@ -143,7 +143,7 @@ public class FileDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_info.hash_sha256
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String hashSha256;
|
||||
|
||||
@@ -153,7 +153,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getId() {
|
||||
return id;
|
||||
@@ -165,7 +165,7 @@ public class FileDO {
|
||||
*
|
||||
* @param id the value for file_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
@@ -177,7 +177,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.book_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getBookId() {
|
||||
return bookId;
|
||||
@@ -189,7 +189,7 @@ public class FileDO {
|
||||
*
|
||||
* @param bookId the value for file_info.book_id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setBookId(Integer bookId) {
|
||||
this.bookId = bookId;
|
||||
@@ -201,7 +201,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.file_display_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getFileDisplayName() {
|
||||
return fileDisplayName;
|
||||
@@ -213,7 +213,7 @@ public class FileDO {
|
||||
*
|
||||
* @param fileDisplayName the value for file_info.file_display_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileDisplayName(String fileDisplayName) {
|
||||
this.fileDisplayName = fileDisplayName == null ? null : fileDisplayName.trim();
|
||||
@@ -225,7 +225,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.file_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
@@ -237,7 +237,7 @@ public class FileDO {
|
||||
*
|
||||
* @param fileName the value for file_info.file_name
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName == null ? null : fileName.trim();
|
||||
@@ -249,7 +249,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.file_format
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getFileFormat() {
|
||||
return fileFormat;
|
||||
@@ -261,7 +261,7 @@ public class FileDO {
|
||||
*
|
||||
* @param fileFormat the value for file_info.file_format
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileFormat(String fileFormat) {
|
||||
this.fileFormat = fileFormat == null ? null : fileFormat.trim();
|
||||
@@ -273,7 +273,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.number_of_pages
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getNumberOfPages() {
|
||||
return numberOfPages;
|
||||
@@ -285,7 +285,7 @@ public class FileDO {
|
||||
*
|
||||
* @param numberOfPages the value for file_info.number_of_pages
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setNumberOfPages(Integer numberOfPages) {
|
||||
this.numberOfPages = numberOfPages;
|
||||
@@ -297,7 +297,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.watermark
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Boolean getWatermark() {
|
||||
return watermark;
|
||||
@@ -309,7 +309,7 @@ public class FileDO {
|
||||
*
|
||||
* @param watermark the value for file_info.watermark
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setWatermark(Boolean watermark) {
|
||||
this.watermark = watermark;
|
||||
@@ -321,7 +321,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.advertising
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Boolean getAdvertising() {
|
||||
return advertising;
|
||||
@@ -333,7 +333,7 @@ public class FileDO {
|
||||
*
|
||||
* @param advertising the value for file_info.advertising
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setAdvertising(Boolean advertising) {
|
||||
this.advertising = advertising;
|
||||
@@ -345,7 +345,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.book_origin
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Byte getBookOrigin() {
|
||||
return bookOrigin;
|
||||
@@ -357,7 +357,7 @@ public class FileDO {
|
||||
*
|
||||
* @param bookOrigin the value for file_info.book_origin
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setBookOrigin(Byte bookOrigin) {
|
||||
this.bookOrigin = bookOrigin;
|
||||
@@ -369,7 +369,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.thumbnail
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getThumbnail() {
|
||||
return thumbnail;
|
||||
@@ -381,7 +381,7 @@ public class FileDO {
|
||||
*
|
||||
* @param thumbnail the value for file_info.thumbnail
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setThumbnail(String thumbnail) {
|
||||
this.thumbnail = thumbnail == null ? null : thumbnail.trim();
|
||||
@@ -393,7 +393,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.file_create_at
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Date getFileCreateAt() {
|
||||
return fileCreateAt;
|
||||
@@ -405,7 +405,7 @@ public class FileDO {
|
||||
*
|
||||
* @param fileCreateAt the value for file_info.file_create_at
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileCreateAt(Date fileCreateAt) {
|
||||
this.fileCreateAt = fileCreateAt;
|
||||
@@ -417,7 +417,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.file_modified_at
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Date getFileModifiedAt() {
|
||||
return fileModifiedAt;
|
||||
@@ -429,7 +429,7 @@ public class FileDO {
|
||||
*
|
||||
* @param fileModifiedAt the value for file_info.file_modified_at
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileModifiedAt(Date fileModifiedAt) {
|
||||
this.fileModifiedAt = fileModifiedAt;
|
||||
@@ -441,7 +441,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.file_size
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getFileSize() {
|
||||
return fileSize;
|
||||
@@ -453,7 +453,7 @@ public class FileDO {
|
||||
*
|
||||
* @param fileSize the value for file_info.file_size
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileSize(Integer fileSize) {
|
||||
this.fileSize = fileSize;
|
||||
@@ -465,7 +465,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.hash_md5
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getHashMd5() {
|
||||
return hashMd5;
|
||||
@@ -477,7 +477,7 @@ public class FileDO {
|
||||
*
|
||||
* @param hashMd5 the value for file_info.hash_md5
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setHashMd5(String hashMd5) {
|
||||
this.hashMd5 = hashMd5 == null ? null : hashMd5.trim();
|
||||
@@ -489,7 +489,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.hash_sha1
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getHashSha1() {
|
||||
return hashSha1;
|
||||
@@ -501,7 +501,7 @@ public class FileDO {
|
||||
*
|
||||
* @param hashSha1 the value for file_info.hash_sha1
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setHashSha1(String hashSha1) {
|
||||
this.hashSha1 = hashSha1 == null ? null : hashSha1.trim();
|
||||
@@ -513,7 +513,7 @@ public class FileDO {
|
||||
*
|
||||
* @return the value of file_info.hash_sha256
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getHashSha256() {
|
||||
return hashSha256;
|
||||
@@ -525,7 +525,7 @@ public class FileDO {
|
||||
*
|
||||
* @param hashSha256 the value for file_info.hash_sha256
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setHashSha256(String hashSha256) {
|
||||
this.hashSha256 = hashSha256 == null ? null : hashSha256.trim();
|
||||
|
@@ -6,7 +6,7 @@ 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 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
@@ -15,7 +15,7 @@ public class FileObjectDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_object_info.fileId
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer fileid;
|
||||
|
||||
@@ -24,7 +24,7 @@ public class FileObjectDO {
|
||||
* 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 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Byte storageMediumType;
|
||||
|
||||
@@ -33,7 +33,7 @@ public class FileObjectDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_object_info.file_path
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String filePath;
|
||||
|
||||
@@ -42,7 +42,7 @@ public class FileObjectDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_object_info.file_pwd
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String filePwd;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class FileObjectDO {
|
||||
* 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 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String fileShareCode;
|
||||
|
||||
@@ -60,7 +60,7 @@ public class FileObjectDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column file_object_info.additional_fields
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String additionalFields;
|
||||
|
||||
@@ -70,7 +70,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @return the value of file_object_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getId() {
|
||||
return id;
|
||||
@@ -82,7 +82,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @param id the value for file_object_info.id
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
@@ -94,7 +94,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @return the value of file_object_info.fileId
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getFileid() {
|
||||
return fileid;
|
||||
@@ -106,7 +106,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @param fileid the value for file_object_info.fileId
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileid(Integer fileid) {
|
||||
this.fileid = fileid;
|
||||
@@ -118,7 +118,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @return the value of file_object_info.storage_medium_type
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Byte getStorageMediumType() {
|
||||
return storageMediumType;
|
||||
@@ -130,7 +130,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @param storageMediumType the value for file_object_info.storage_medium_type
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setStorageMediumType(Byte storageMediumType) {
|
||||
this.storageMediumType = storageMediumType;
|
||||
@@ -142,7 +142,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @return the value of file_object_info.file_path
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getFilePath() {
|
||||
return filePath;
|
||||
@@ -154,7 +154,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @param filePath the value for file_object_info.file_path
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFilePath(String filePath) {
|
||||
this.filePath = filePath == null ? null : filePath.trim();
|
||||
@@ -166,7 +166,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @return the value of file_object_info.file_pwd
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getFilePwd() {
|
||||
return filePwd;
|
||||
@@ -178,7 +178,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @param filePwd the value for file_object_info.file_pwd
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFilePwd(String filePwd) {
|
||||
this.filePwd = filePwd == null ? null : filePwd.trim();
|
||||
@@ -190,7 +190,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @return the value of file_object_info.file_share_code
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getFileShareCode() {
|
||||
return fileShareCode;
|
||||
@@ -202,7 +202,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @param fileShareCode the value for file_object_info.file_share_code
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setFileShareCode(String fileShareCode) {
|
||||
this.fileShareCode = fileShareCode == null ? null : fileShareCode.trim();
|
||||
@@ -214,7 +214,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @return the value of file_object_info.additional_fields
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getAdditionalFields() {
|
||||
return additionalFields;
|
||||
@@ -226,7 +226,7 @@ public class FileObjectDO {
|
||||
*
|
||||
* @param additionalFields the value for file_object_info.additional_fields
|
||||
*
|
||||
* @mbg.generated Sat Mar 12 21:38:13 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setAdditionalFields(String additionalFields) {
|
||||
this.additionalFields = additionalFields == null ? null : additionalFields.trim();
|
||||
|
@@ -6,7 +6,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.id
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
@@ -15,7 +15,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.username
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String username;
|
||||
|
||||
@@ -24,7 +24,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.encript_pwd
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String encriptPwd;
|
||||
|
||||
@@ -33,7 +33,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.nickname
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String nickname;
|
||||
|
||||
@@ -42,7 +42,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.user_identity
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String userIdentity;
|
||||
|
||||
@@ -51,7 +51,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.avatar
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String avatar;
|
||||
|
||||
@@ -60,7 +60,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.phone
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String phone;
|
||||
|
||||
@@ -69,7 +69,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.weixin_third_party_auth_code
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String weixinThirdPartyAuthCode;
|
||||
|
||||
@@ -78,7 +78,7 @@ public class UserDO {
|
||||
* This field was generated by MyBatis Generator.
|
||||
* This field corresponds to the database column user_info.qq_third_party_auth_code
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
private String qqThirdPartyAuthCode;
|
||||
|
||||
@@ -88,7 +88,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.id
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public Integer getId() {
|
||||
return id;
|
||||
@@ -100,7 +100,7 @@ public class UserDO {
|
||||
*
|
||||
* @param id the value for user_info.id
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
@@ -112,7 +112,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.username
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getUsername() {
|
||||
return username;
|
||||
@@ -124,7 +124,7 @@ public class UserDO {
|
||||
*
|
||||
* @param username the value for user_info.username
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setUsername(String username) {
|
||||
this.username = username == null ? null : username.trim();
|
||||
@@ -136,7 +136,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.encript_pwd
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getEncriptPwd() {
|
||||
return encriptPwd;
|
||||
@@ -148,7 +148,7 @@ public class UserDO {
|
||||
*
|
||||
* @param encriptPwd the value for user_info.encript_pwd
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setEncriptPwd(String encriptPwd) {
|
||||
this.encriptPwd = encriptPwd == null ? null : encriptPwd.trim();
|
||||
@@ -160,7 +160,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.nickname
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getNickname() {
|
||||
return nickname;
|
||||
@@ -172,7 +172,7 @@ public class UserDO {
|
||||
*
|
||||
* @param nickname the value for user_info.nickname
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setNickname(String nickname) {
|
||||
this.nickname = nickname == null ? null : nickname.trim();
|
||||
@@ -184,7 +184,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.user_identity
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getUserIdentity() {
|
||||
return userIdentity;
|
||||
@@ -196,7 +196,7 @@ public class UserDO {
|
||||
*
|
||||
* @param userIdentity the value for user_info.user_identity
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setUserIdentity(String userIdentity) {
|
||||
this.userIdentity = userIdentity == null ? null : userIdentity.trim();
|
||||
@@ -208,7 +208,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.avatar
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getAvatar() {
|
||||
return avatar;
|
||||
@@ -220,7 +220,7 @@ public class UserDO {
|
||||
*
|
||||
* @param avatar the value for user_info.avatar
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setAvatar(String avatar) {
|
||||
this.avatar = avatar == null ? null : avatar.trim();
|
||||
@@ -232,7 +232,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.phone
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
@@ -244,7 +244,7 @@ public class UserDO {
|
||||
*
|
||||
* @param phone the value for user_info.phone
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone == null ? null : phone.trim();
|
||||
@@ -256,7 +256,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.weixin_third_party_auth_code
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getWeixinThirdPartyAuthCode() {
|
||||
return weixinThirdPartyAuthCode;
|
||||
@@ -268,7 +268,7 @@ public class UserDO {
|
||||
*
|
||||
* @param weixinThirdPartyAuthCode the value for user_info.weixin_third_party_auth_code
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setWeixinThirdPartyAuthCode(String weixinThirdPartyAuthCode) {
|
||||
this.weixinThirdPartyAuthCode = weixinThirdPartyAuthCode == null ? null : weixinThirdPartyAuthCode.trim();
|
||||
@@ -280,7 +280,7 @@ public class UserDO {
|
||||
*
|
||||
* @return the value of user_info.qq_third_party_auth_code
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public String getQqThirdPartyAuthCode() {
|
||||
return qqThirdPartyAuthCode;
|
||||
@@ -292,7 +292,7 @@ public class UserDO {
|
||||
*
|
||||
* @param qqThirdPartyAuthCode the value for user_info.qq_third_party_auth_code
|
||||
*
|
||||
* @mbg.generated Sun Mar 13 01:51:14 SGT 2022
|
||||
* @mbg.generated
|
||||
*/
|
||||
public void setQqThirdPartyAuthCode(String qqThirdPartyAuthCode) {
|
||||
this.qqThirdPartyAuthCode = qqThirdPartyAuthCode == null ? null : qqThirdPartyAuthCode.trim();
|
||||
|
Reference in New Issue
Block a user