|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using Common.Enum;
|
|
|
|
|
using Entity.Base;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace Entity.DbModel.System
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 系统通知公告表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("sys_notice")]
|
|
|
|
|
public partial class SysNotice : EntityBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标题
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SensitiveDetection('*')]
|
|
|
|
|
[SugarColumn(ColumnName = "title")]
|
|
|
|
|
public virtual string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 内容
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "内容", ColumnDataType = StaticConfig.CodeFirst_BigString,
|
|
|
|
|
ColumnName = "content")]
|
|
|
|
|
[Required]
|
|
|
|
|
[SensitiveDetection('*')]
|
|
|
|
|
public virtual string Content { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 类型(1通知 2公告)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "类型(1通知 2公告)", ColumnName = "yype")]
|
|
|
|
|
public NoticeTypeEnum Type { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布人Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "发布人Id", ColumnName = "public_user_id")]
|
|
|
|
|
public long PublicUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布人姓名
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "发布人姓名", Length = 32, ColumnName = "public_user_name")]
|
|
|
|
|
[MaxLength(32)]
|
|
|
|
|
public string? PublicUserName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布机构Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "发布机构Id", ColumnName = "public_org_id")]
|
|
|
|
|
public long PublicOrgId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布机构名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "发布机构名称", Length = 64, ColumnName = "public_org_name")]
|
|
|
|
|
[MaxLength(64)]
|
|
|
|
|
public string? PublicOrgName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发布时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "发布时间", ColumnName = "public_time")]
|
|
|
|
|
public DateTime? PublicTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 撤回时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "撤回时间", ColumnName = "cancel_time")]
|
|
|
|
|
public DateTime? CancelTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态(0草稿 1发布 2撤回 3删除)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "状态(0草稿 1发布 2撤回 3删除)", ColumnName = "status")]
|
|
|
|
|
public NoticeStatusEnum Status { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|