| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- package cn.com.lzt.message.send.page;
- import cn.com.lzt.message.send.entity.MMessageSendScopeEntity;
- import java.util.Date;
- import java.util.List;
- import java.util.ArrayList;
- import org.jeecgframework.poi.excel.annotation.Excel;
- import org.jeecgframework.poi.excel.annotation.ExcelCollection;
- /**
- * @Title: Entity
- * @Description: 消息管理主表
- * @author onlineGenerator
- * @date 2019-05-23 16:51:48
- * @version V1.0
- *
- */
- public class MMessagePage implements java.io.Serializable {
- /**主键*/
- private String id;
- /**创建人名称*/
- private String createName;
- /**创建人登录名称*/
- private String createBy;
- /**创建日期*/
- private Date createDate;
- /**更新人名称*/
- private String updateName;
- /**更新人登录名称*/
- private String updateBy;
- /**更新日期*/
- private Date updateDate;
- /**所属部门*/
- private String sysOrgCode;
- /**所属公司*/
- private String sysCompanyCode;
- /**流程状态*/
- private String bpmStatus;
- /**标题*/
- @Excel(name="标题")
- private String title;
- /**内容*/
- @Excel(name="内容")
- private String text;
- /**发送人数*/
- private Integer sendCount;
- /**已读人数*/
- private Integer seeCount;
- /**发送范围*/
- @Excel(name="发送范围")
- private String sendScope;
- /**发送方式*/
- @Excel(name="发送方式")
- private String sendWay;
- /**消息类型*/
- private String messageType;
- /**发送时间*/
- private Date sendTime;
- /**发送时间类型*/
- @Excel(name="发送时间类型")
- private Integer sendTimeType;
- /**通知类型*/
- @Excel(name="通知类型")
- private String noticeType;
- /**是否发送*/
- private Integer isSend;
- /**是否微信发送*/
- private Integer isWx;
- /**是否短信发送*/
- private Integer isShort;
- /**是否邮件发送*/
- private Integer isEmail;
- /**是否站内信*/
- private Integer isSite;
-
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 主键
- */
- public String getId(){
- return this.id;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 主键
- */
- public void setId(String id){
- this.id = id;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 创建人名称
- */
- public String getCreateName(){
- return this.createName;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 创建人名称
- */
- public void setCreateName(String createName){
- this.createName = createName;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 创建人登录名称
- */
- public String getCreateBy(){
- return this.createBy;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 创建人登录名称
- */
- public void setCreateBy(String createBy){
- this.createBy = createBy;
- }
- /**
- *方法: 取得java.util.Date
- *@return: java.util.Date 创建日期
- */
- public Date getCreateDate(){
- return this.createDate;
- }
- /**
- *方法: 设置java.util.Date
- *@param: java.util.Date 创建日期
- */
- public void setCreateDate(Date createDate){
- this.createDate = createDate;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 更新人名称
- */
- public String getUpdateName(){
- return this.updateName;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 更新人名称
- */
- public void setUpdateName(String updateName){
- this.updateName = updateName;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 更新人登录名称
- */
- public String getUpdateBy(){
- return this.updateBy;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 更新人登录名称
- */
- public void setUpdateBy(String updateBy){
- this.updateBy = updateBy;
- }
- /**
- *方法: 取得java.util.Date
- *@return: java.util.Date 更新日期
- */
- public Date getUpdateDate(){
- return this.updateDate;
- }
- /**
- *方法: 设置java.util.Date
- *@param: java.util.Date 更新日期
- */
- public void setUpdateDate(Date updateDate){
- this.updateDate = updateDate;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 所属部门
- */
- public String getSysOrgCode(){
- return this.sysOrgCode;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 所属部门
- */
- public void setSysOrgCode(String sysOrgCode){
- this.sysOrgCode = sysOrgCode;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 所属公司
- */
- public String getSysCompanyCode(){
- return this.sysCompanyCode;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 所属公司
- */
- public void setSysCompanyCode(String sysCompanyCode){
- this.sysCompanyCode = sysCompanyCode;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 流程状态
- */
- public String getBpmStatus(){
- return this.bpmStatus;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 流程状态
- */
- public void setBpmStatus(String bpmStatus){
- this.bpmStatus = bpmStatus;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 标题
- */
- public String getTitle(){
- return this.title;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 标题
- */
- public void setTitle(String title){
- this.title = title;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 内容
- */
- public String getText(){
- return this.text;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 内容
- */
- public void setText(String text){
- this.text = text;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 发送人数
- */
- public Integer getSendCount(){
- return this.sendCount;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 发送人数
- */
- public void setSendCount(Integer sendCount){
- this.sendCount = sendCount;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 已读人数
- */
- public Integer getSeeCount(){
- return this.seeCount;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 已读人数
- */
- public void setSeeCount(Integer seeCount){
- this.seeCount = seeCount;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 发送范围
- */
- public String getSendScope(){
- return this.sendScope;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 发送范围
- */
- public void setSendScope(String sendScope){
- this.sendScope = sendScope;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 发送方式
- */
- public String getSendWay(){
- return this.sendWay;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 发送方式
- */
- public void setSendWay(String sendWay){
- this.sendWay = sendWay;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 消息类型
- */
- public String getMessageType(){
- return this.messageType;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 消息类型
- */
- public void setMessageType(String messageType){
- this.messageType = messageType;
- }
- /**
- *方法: 取得java.util.Date
- *@return: java.util.Date 发送时间
- */
- public Date getSendTime(){
- return this.sendTime;
- }
- /**
- *方法: 设置java.util.Date
- *@param: java.util.Date 发送时间
- */
- public void setSendTime(Date sendTime){
- this.sendTime = sendTime;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 发送时间类型
- */
- public Integer getSendTimeType(){
- return this.sendTimeType;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 发送时间类型
- */
- public void setSendTimeType(Integer sendTimeType){
- this.sendTimeType = sendTimeType;
- }
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 通知类型
- */
- public String getNoticeType(){
- return this.noticeType;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 通知类型
- */
- public void setNoticeType(String noticeType){
- this.noticeType = noticeType;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 是否发送
- */
- public Integer getIsSend(){
- return this.isSend;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 是否发送
- */
- public void setIsSend(Integer isSend){
- this.isSend = isSend;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 是否微信发送
- */
- public Integer getIsWx(){
- return this.isWx;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 是否微信发送
- */
- public void setIsWx(Integer isWx){
- this.isWx = isWx;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 是否短信发送
- */
- public Integer getIsShort(){
- return this.isShort;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 是否短信发送
- */
- public void setIsShort(Integer isShort){
- this.isShort = isShort;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 是否邮件发送
- */
- public Integer getIsEmail(){
- return this.isEmail;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 是否邮件发送
- */
- public void setIsEmail(Integer isEmail){
- this.isEmail = isEmail;
- }
- /**
- *方法: 取得java.lang.Integer
- *@return: java.lang.Integer 是否站内信
- */
- public Integer getIsSite(){
- return this.isSite;
- }
- /**
- *方法: 设置java.lang.Integer
- *@param: java.lang.Integer 是否站内信
- */
- public void setIsSite(Integer isSite){
- this.isSite = isSite;
- }
- /**保存-范围详情*/
- @ExcelCollection(name="范围详情")
- private List<MMessageSendScopeEntity> mMessageSendScopeList = new ArrayList<MMessageSendScopeEntity>();
- public List<MMessageSendScopeEntity> getMMessageSendScopeList() {
- return mMessageSendScopeList;
- }
- public void setMMessageSendScopeList(List<MMessageSendScopeEntity> mMessageSendScopeList) {
- this.mMessageSendScopeList = mMessageSendScopeList;
- }
- }
|