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 = "user_query_setting", DisableSyncStructure = true)] public partial class UserQuerySetting { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty] public DateTime? CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(1000)")] public string FIELDVALUES { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string FORMNAME { get; set; } [JsonProperty] public bool? ISSAVEVALUE { get; set; } [JsonProperty] public bool? ISVISIBLE { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string USERID { get; set; } } }