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

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>
/// 标题 /// 标题
/// </summary> /// </summary>
[SugarColumn(ColumnDescription = "标题", Length = 128)] [SugarColumn(ColumnDescription = "标题", Length = 256)]
[Required, MaxLength(32)] [Required, MaxLength(256)]
[SensitiveDetection('*')] [SensitiveDetection('*')]
public virtual string Title { get; set; } public virtual string Title { get; set; }