优化代码注释&命名空间

This commit is contained in:
不做码农
2023-05-04 18:20:18 +08:00
parent 547945d85b
commit a89762e070
47 changed files with 224 additions and 353 deletions

View File

@@ -13,32 +13,27 @@ namespace ZR.Model.System
public class SysNotice : SysBase
{
/// <summary>
/// 描述 : 公告ID
/// 空值 : true
/// 公告ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "notice_id")]
public int NoticeId { get; set; }
/// <summary>
/// 描述 : 公告标题
/// 空值 : true
/// 公告标题
/// </summary>
[SugarColumn(ColumnName = "notice_title")]
public string NoticeTitle { get; set; }
/// <summary>
/// 描述 : 公告类型 (1通知 2公告)
/// 空值 : true
/// 公告类型 (1通知 2公告)
/// </summary>
[SugarColumn(ColumnName = "notice_type")]
public string NoticeType { get; set; }
/// <summary>
/// 描述 : 公告内容
/// 空值 : true
/// 公告内容
/// </summary>
[SugarColumn(ColumnName = "notice_content")]
public string NoticeContent { get; set; }
/// <summary>
/// 描述 : 公告状态 (0正常 1关闭)
/// 空值 : true
/// 公告状态 (0正常 1关闭)
/// </summary>
public string Status { get; set; }
}