1 Star 0 Fork 0

为梦想而生/javabbs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
News.java 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
为梦想而生 提交于 2017-03-13 11:01 . news push
package com.qdbdf.po;
import java.util.Date;
public class News {
private Integer id;
private String newstitle;
private Date publishdate;
private String headimg;
private Integer ishot;
private String newscontent;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getNewstitle() {
return newstitle;
}
public void setNewstitle(String newstitle) {
this.newstitle = newstitle == null ? null : newstitle.trim();
}
public Date getPublishdate() {
return publishdate;
}
public void setPublishdate(Date publishdate) {
this.publishdate = publishdate;
}
public String getHeadimg() {
return headimg;
}
public void setHeadimg(String headimg) {
this.headimg = headimg == null ? null : headimg.trim();
}
public Integer getIshot() {
return ishot;
}
public void setIshot(Integer ishot) {
this.ishot = ishot;
}
public String getNewscontent() {
return newscontent;
}
public void setNewscontent(String newscontent) {
this.newscontent = newscontent == null ? null : newscontent.trim();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dbwlove/javabbs.git
[email protected]:dbwlove/javabbs.git
dbwlove
javabbs
javabbs
master

搜索帮助