初始化调整 debug

This commit is contained in:
DESKTOP-H2PAFLR\Administrator
2023-07-26 14:15:47 +08:00
parent 5f9aaa5c33
commit 0c7597cd46
9 changed files with 500 additions and 637 deletions

View File

@@ -26,7 +26,7 @@ namespace ZR.Model.System
/// 公告类型 (1通知 2公告)
/// </summary>
[SugarColumn(ColumnName = "notice_type", ExtendedAttribute = ProteryConstant.NOTNULL)]
public int NoticeType { get; set; }
public char NoticeType { get; set; }
/// <summary>
/// 公告内容
/// </summary>
@@ -36,6 +36,6 @@ namespace ZR.Model.System
/// 公告状态 (0正常 1关闭)
/// </summary>
[SugarColumn(DefaultValue = "0", ExtendedAttribute = ProteryConstant.NOTNULL)]
public int Status { get; set; }
public char Status { get; set; }
}
}