😎修改通知公告标题字段长度

This commit is contained in:
zuohuaijun 2025-03-27 02:32:45 +08:00
parent f2d310e578
commit 66e3d8a164

View File

@ -17,8 +17,8 @@ public partial class SysNotice : EntityTenant
/// <summary>
/// 标题
/// </summary>
[SugarColumn(ColumnDescription = "标题", Length = 128)]
[Required, MaxLength(32)]
[SugarColumn(ColumnDescription = "标题", Length = 256)]
[Required, MaxLength(256)]
[SensitiveDetection('*')]
public virtual string Title { get; set; }