mirror of
https://github.com/201206030/novel-plus.git
synced 2026-01-29 05:30:30 +08:00
111 lines
3.1 KiB
Java
111 lines
3.1 KiB
Java
package com.java2nb.novel.entity;
|
|
|
|
|
|
import javax.annotation.Generated;
|
|
import java.util.Date;
|
|
|
|
public class BookComment {
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long id;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long bookId;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private String commentContent;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private String location;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Integer replyCount;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Byte auditStatus;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Date createTime;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
private Long createUserId;
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getBookId() {
|
|
return bookId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setBookId(Long bookId) {
|
|
this.bookId = bookId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public String getCommentContent() {
|
|
return commentContent;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setCommentContent(String commentContent) {
|
|
this.commentContent = commentContent == null ? null : commentContent.trim();
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public String getLocation() {
|
|
return location;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setLocation(String location) {
|
|
this.location = location == null ? null : location.trim();
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Integer getReplyCount() {
|
|
return replyCount;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setReplyCount(Integer replyCount) {
|
|
this.replyCount = replyCount;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Byte getAuditStatus() {
|
|
return auditStatus;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setAuditStatus(Byte auditStatus) {
|
|
this.auditStatus = auditStatus;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Date getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public Long getCreateUserId() {
|
|
return createUserId;
|
|
}
|
|
|
|
@Generated("org.mybatis.generator.api.MyBatisGenerator")
|
|
public void setCreateUserId(Long createUserId) {
|
|
this.createUserId = createUserId;
|
|
}
|
|
} |