package org.ruoyi.system.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.ruoyi.common.tenant.core.TenantEntity;
|
|
|
/**
|
* 通知公告表 sys_notice
|
*
|
* @author Lion Li
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("SYS_NOTICE")
|
public class SysNotice extends TenantEntity {
|
|
/**
|
* 公告ID
|
*/
|
@TableId(value = "NOTICE_ID")
|
private Long noticeId;
|
|
/**
|
* 公告标题
|
*/
|
@TableField("NOTICE_TITLE")
|
private String noticeTitle;
|
|
/**
|
* 公告类型(1通知 2公告)
|
*/
|
@TableField("NOTICE_TYPE")
|
private String noticeType;
|
|
/**
|
* 公告内容
|
*/
|
@TableField("NOTICE_CONTENT")
|
private String noticeContent;
|
|
/**
|
* 公告状态(0正常 1关闭)
|
*/
|
@TableField("STATUS")
|
private String status;
|
|
/**
|
* 备注
|
*/
|
@TableField("REMARK")
|
private String remark;
|
|
}
|