132 lines
2.6 KiB
Java
132 lines
2.6 KiB
Java
//
|
|
// Source code recreated from a .class file by IntelliJ IDEA
|
|
// (powered by FernFlower decompiler)
|
|
//
|
|
|
|
package com.luozhihui.project.entity;
|
|
|
|
import java.util.Date;
|
|
|
|
public class Post {
|
|
private Integer id;
|
|
private String title;
|
|
private String content;
|
|
private String userId;
|
|
private String categoryId;
|
|
private String status;
|
|
private Integer viewCount;
|
|
private Integer likeCount;
|
|
private Integer replyCount;
|
|
private String UserName;
|
|
private Date createTime;
|
|
private Date updateTime;
|
|
private String categoryName;
|
|
|
|
public Post() {
|
|
}
|
|
|
|
public String getCategoryName() {
|
|
return this.categoryName;
|
|
}
|
|
|
|
public void setCategoryName(String categoryName) {
|
|
this.categoryName = categoryName;
|
|
}
|
|
|
|
public String getUserName() {
|
|
return this.UserName;
|
|
}
|
|
|
|
public void setUserName(String userName) {
|
|
this.UserName = userName;
|
|
}
|
|
|
|
public Integer getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public String getUserId() {
|
|
return this.userId;
|
|
}
|
|
|
|
public void setUserId(String userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public String getCategoryId() {
|
|
return this.categoryId;
|
|
}
|
|
|
|
public void setCategoryId(String categoryId) {
|
|
this.categoryId = categoryId;
|
|
}
|
|
|
|
public String getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public Integer getViewCount() {
|
|
return this.viewCount;
|
|
}
|
|
|
|
public void setViewCount(Integer viewCount) {
|
|
this.viewCount = viewCount;
|
|
}
|
|
|
|
public Integer getLikeCount() {
|
|
return this.likeCount;
|
|
}
|
|
|
|
public void setLikeCount(Integer likeCount) {
|
|
this.likeCount = likeCount;
|
|
}
|
|
|
|
public Integer getReplyCount() {
|
|
return this.replyCount;
|
|
}
|
|
|
|
public void setReplyCount(Integer replyCount) {
|
|
this.replyCount = replyCount;
|
|
}
|
|
|
|
public Date getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public Date getUpdateTime() {
|
|
return this.updateTime;
|
|
}
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
this.updateTime = updateTime;
|
|
}
|
|
}
|