using SqlSugar;
namespace ZR.Model.System
{
///
/// 通知公告表,数据实体对象
///
/// @author zr
/// @date 2021-12-15
///
[SugarTable("sys_notice")]
[Tenant(0)]
public class SysNotice : SysBase
{
///
/// 描述 : 公告ID
/// 空值 : true
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "notice_id")]
public int NoticeId { get; set; }
///
/// 描述 : 公告标题
/// 空值 : true
///
[SugarColumn(ColumnName = "notice_title")]
public string NoticeTitle { get; set; }
///
/// 描述 : 公告类型 (1通知 2公告)
/// 空值 : true
///
[SugarColumn(ColumnName = "notice_type")]
public string NoticeType { get; set; }
///
/// 描述 : 公告内容
/// 空值 : true
///
[SugarColumn(ColumnName = "notice_content")]
public string NoticeContent { get; set; }
///
/// 描述 : 公告状态 (0正常 1关闭)
/// 空值 : true
///
public string Status { get; set; }
}
}