package com.thhy.secure.modules.biz.notice.entity;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
public class NoticeListVo implements Serializable {
|
|
private String id;
|
|
|
/**
|
* 公告名称
|
*/
|
|
|
private String noticeName;
|
|
/**
|
* 公告类型 字典
|
*/
|
|
|
private String noticeType;
|
|
private String noticeTypeName;
|
|
/**
|
* 公告内容
|
*/
|
|
|
private String noticeContent;
|
|
/**
|
* 发布时间
|
*/
|
|
|
private Date createTime;
|
|
|
|
private String createUser;
|
|
|
|
private Date updateTime;
|
|
|
|
private String updateUser;
|
|
/**
|
* 1Y0N
|
*/
|
|
|
private Integer isUse;
|
|
/**
|
* 1上架2下架
|
*/
|
|
|
private Integer status;
|
|
private String companyId;
|
|
private Date publishTime;
|
}
|