using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common.DJYModel { [JsonObject(MemberSerialization.OptIn), Table(Name = "sys_param_set", DisableSyncStructure = true)] public class ParamSet { /// /// 主键 /// [JsonProperty, Column(IsPrimary = true, IsNullable = false)] public string GID { get; set; } public string PARAMNAME { get; set; } public string PARAMDESCRIPTION { get; set; } public string PARAMVALUE { get; set; } public string MODIFIEDUSER { get; set; } public DateTime? MODIFIEDTIME { get; set; } public string PARAMTYPE { get; set; } public string FIELDTYPE { get; set; } } }