using ZR.Model.System;
namespace ZR.ServiceCore.Model
{
///
/// 通知公告表
///
/// @author zr
/// @date 2021-12-15
///
[SugarTable("sys_notice", "通知公告表")]
[Tenant(0)]
public class SysNotice : SysBase
{
///
/// 公告ID
///
[SugarColumn(IsPrimaryKey = true, ColumnName = "notice_id")]
[JsonConverter(typeof(ValueToStringConverter))]
public long NoticeId { get; set; }
///
/// 公告标题
///
[SugarColumn(ColumnName = "notice_title", ExtendedAttribute = ProteryConstant.NOTNULL)]
public string NoticeTitle { get; set; }
///
/// 公告类型 (1通知 2公告)
///
[SugarColumn(ColumnName = "notice_type", ExtendedAttribute = ProteryConstant.NOTNULL)]
public int NoticeType { get; set; }
///
/// 公告内容
///
[SugarColumn(ColumnName = "notice_content", ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string NoticeContent { get; set; }
///
/// 公告状态 (0正常 1关闭)
///
[SugarColumn(DefaultValue = "0", ExtendedAttribute = ProteryConstant.NOTNULL)]
public int Status { get; set; }
}
}