1 Star 0 Fork 15

程序源代码/图书馆预约占座管理系统_1

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Bbs.java 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
小盼江 提交于 2020-01-04 20:52 +08:00 . no commit message
package dingzhen.entity;
// 交流主题
public class Bbs extends BaseEntity{
private Integer id; //主键
private String title; //标题
private String author; //发表人
private String time; //发表时间
private Integer reply; //回复人数
private String lastreply; //最后回复人
private String lastreplytime; // 最后回复时间
private String content;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public Integer getReply() {
return reply;
}
public void setReply(Integer reply) {
this.reply = reply;
}
public String getLastreply() {
return lastreply;
}
public void setLastreply(String lastreply) {
this.lastreply = lastreply;
}
public String getLastreplytime() {
return lastreplytime;
}
public void setLastreplytime(String lastreplytime) {
this.lastreplytime = lastreplytime;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/itcode-itcode/Library_1.git
git@gitee.com:itcode-itcode/Library_1.git
itcode-itcode
Library_1
图书馆预约占座管理系统_1
master

搜索帮助