using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "sys_CustomColumnsConfig", DisableSyncStructure = true)] public partial class SysCustomColumnsConfig { [JsonProperty, Column(StringLength = 50, IsPrimary = true, IsNullable = false)] public string GId { get; set; } = Guid.NewGuid().ToString().ToUpper(); /// /// 标识名称 /// [JsonProperty, Column(DbType = "varchar(50)")] public string NodeName { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string UserCode { get; set; } [JsonProperty, Column(DbType = "varchar(1500)")] public string UserConfig { get; set; } } }