1 Star 0 Fork 15

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

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Topic.java 852 Bytes
Copy Edit Raw Blame History
小盼江 authored 2020-01-04 20:52 +08:00 . no commit message
package dingzhen.entity;
// 交流回复内容
public class Topic extends BaseEntity{
private Integer id;
private Integer bbsid; //主题id
private String content; //内容
private String author; // 作者
private String time; //发表时间
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getBbsid() {
return bbsid;
}
public void setBbsid(Integer bbsid) {
this.bbsid = bbsid;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
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;
}
}
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

Search