namespace Admin.NET.Plugin.ApprovalFlow; /// /// 审批意见模板表 /// [SugarTable(null, "审批意见模板表")] public class ApprovalFlowCommentTemplate : EntityBase { /// /// 意见内容 /// [SugarColumn(ColumnDescription = "意见内容", Length = 512)] [Required, MaxLength(512)] public string Content { get; set; } = ""; /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", DefaultValue = "100")] public int OrderNo { get; set; } = 100; /// /// 是否系统预置(系统预置不可删除) /// [SugarColumn(ColumnDescription = "是否系统预置", DefaultValue = "0")] public bool IsSystem { get; set; } /// /// 所属用户Id(空 = 公共模板) /// [SugarColumn(ColumnDescription = "所属用户Id", IsNullable = true)] public long? UserId { get; set; } /// /// 是否启用 /// [SugarColumn(ColumnDescription = "是否启用", DefaultValue = "1")] public bool IsEnabled { get; set; } = true; }