后台接口2
parent
d9954c2ab1
commit
33d722d0b2
|
@ -0,0 +1,75 @@
|
||||||
|
package doctor.domain.entity;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ClassName : SickCircleCommentEntity
|
||||||
|
* @Description : 病友圈评论表
|
||||||
|
* @Author : FJJ
|
||||||
|
* @Date: 2024-01-12 19:57
|
||||||
|
*/
|
||||||
|
public class SickCircleCommentEntity {
|
||||||
|
private Integer id;
|
||||||
|
private Integer sickCircleId;
|
||||||
|
private Integer userId;
|
||||||
|
private String content;
|
||||||
|
private Date commentTime;
|
||||||
|
private Integer whetherDoctor;
|
||||||
|
private Long createTime;
|
||||||
|
|
||||||
|
public Integer getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Integer id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getSickCircleId() {
|
||||||
|
return sickCircleId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSickCircleId(Integer sickCircleId) {
|
||||||
|
this.sickCircleId = sickCircleId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getUserId() {
|
||||||
|
return userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserId(Integer userId) {
|
||||||
|
this.userId = userId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContent() {
|
||||||
|
return content;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setContent(String content) {
|
||||||
|
this.content = content;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getCommentTime() {
|
||||||
|
return commentTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCommentTime(Date commentTime) {
|
||||||
|
this.commentTime = commentTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getWhetherDoctor() {
|
||||||
|
return whetherDoctor;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWhetherDoctor(Integer whetherDoctor) {
|
||||||
|
this.whetherDoctor = whetherDoctor;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getCreateTime() {
|
||||||
|
return createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateTime(Long createTime) {
|
||||||
|
this.createTime = createTime;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue