using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core; /// /// 系统Json静态数据 /// [SugarTable(null, "系统Json静态数据")] [SysTable] public class SysJsonStatic : EntityBase { /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 200)] [Required, MaxLength(200)] public string Name { get; set; } /// /// Json内容 /// [SugarColumn(ColumnDescription = "Json内容", Length = 200)] [Required, MaxLength(int.MaxValue)] public string JsonContext { get; set; } /// /// 外链链接 /// [SugarColumn(ColumnDescription = "外链链接", Length = 500)] [MaxLength(500)] public string? OutLink { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 256)] [MaxLength(256)] public string? Remark { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序")] public int OrderNo { get; set; } = 100; }