package com.thhy.secure.modules.biz.notice.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-23 11:23:37
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class SecureNotice implements Serializable {
|
|
|
|
@Idkey
|
private String id;
|
|
|
/**
|
* 公告名称
|
*/
|
|
|
private String noticeName;
|
|
/**
|
* 公告类型 字典
|
*/
|
|
|
private String noticeType;
|
|
/**
|
* 公告内容
|
*/
|
|
|
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;
|
}
|