package com.landtool.lanbase.modules.sys.entity;
|
|
import java.io.Serializable;
|
|
/**
|
* @author lanbase
|
* @Description: TODO(资讯动态)
|
* @date 2018-01-16 09:04:50
|
*/
|
public class PubNews implements Serializable {
|
|
//自增主键
|
private Integer newsid;
|
//标题
|
private String title;
|
//类型:通知公告、资讯动态
|
private String type;
|
//创建时间
|
private String createdate;
|
//创建人中文名
|
private String createusername;
|
//总数(add:dsh/2018/12/05)
|
private Integer count;
|
/**
|
* 设置:自增主键
|
*/
|
public void setNewsid(Integer newsid) {
|
this.newsid = newsid;
|
}
|
/**
|
* 获取:自增主键
|
*/
|
public Integer getNewsid() {
|
return newsid;
|
}
|
/**
|
* 设置:标题
|
*/
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
/**
|
* 获取:标题
|
*/
|
public String getTitle() {
|
return title;
|
}
|
/**
|
* 设置:类型:通知公告、资讯动态
|
*/
|
public void setType(String type) {
|
this.type = type;
|
}
|
/**
|
* 获取:类型:通知公告、资讯动态
|
*/
|
public String getType() {
|
return type;
|
}
|
/**
|
* 设置:创建时间
|
*/
|
public void setCreatedate(String createdate) {
|
this.createdate = createdate;
|
}
|
/**
|
* 获取:创建时间
|
*/
|
public String getCreatedate() {
|
return createdate;
|
}
|
/**
|
* 设置:创建人中文名
|
*/
|
public void setCreateusername(String createusername) {
|
this.createusername = createusername;
|
}
|
/**
|
* 获取:创建人中文名
|
*/
|
public String getCreateusername() {
|
return createusername;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
}
|