You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace GDZZ.Core.Entity;
/// <summary>
/// 通知公告表
/// </summary>
[SugarTable("sys_notice")]
[Description("通知公告表")]
public class SysNotice : DEntityBase
{
/// <summary>
/// 标题
/// </summary>
[Required, MaxLength(20)]
[SugarColumn(ColumnDescription = "标题")]
public string Title { get; set; }
/// <summary>
/// 内容
/// </summary>
[Required]
[SugarColumn(ColumnDescription = "内容")]
public string Content { get; set; }
/// <summary>
/// 类型(字典 1通知 2公告
/// </summary>
[SugarColumn(ColumnDescription = "类型(字典 1通知 2公告")]
public NoticeType Type { get; set; }
/// <summary>
/// 发布人Id
/// </summary>
[SugarColumn(ColumnDescription = "发布人Id")]
public long PublicUserId { get; set; }
/// <summary>
/// 发布人姓名
/// </summary>
[MaxLength(20)]
[SugarColumn(ColumnDescription = "发布人姓名", IsNullable = true)]
public string PublicUserName { get; set; }
/// <summary>
/// 发布机构Id
/// </summary>
[SugarColumn(ColumnDescription = "发布机构Id")]
public long PublicOrgId { get; set; }
/// <summary>
/// 发布机构名称
/// </summary>
[MaxLength(50)]
[SugarColumn(ColumnDescription = "发布机构名称", IsNullable = true)]
public string PublicOrgName { get; set; }
/// <summary>
/// 发布时间
/// </summary>
[SugarColumn(ColumnDescription = "发布时间")]
public DateTime PublicTime { get; set; }
/// <summary>
/// 撤回时间
/// </summary>
[SugarColumn(ColumnDescription = "撤回时间", IsNullable = true)]
public DateTime CancelTime { get; set; }
/// <summary>
/// 状态(字典 0草稿 1发布 2撤回 3删除
/// </summary>
[SugarColumn(ColumnDescription = "状态(字典 0草稿 1发布 2撤回 3删除")]
public NoticeStatus Status { get; set; }
}