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(DisableSyncStructure = true)] public partial class Users { [JsonProperty, Column(StringLength = 128, IsPrimary = true, IsNullable = false)] public string GID { get; set; } [JsonProperty, Column(StringLength = -2)] public string CODENAME { get; set; } [JsonProperty, Column(Name = "comid", StringLength = -2)] public string Comid { get; set; } [JsonProperty, Column(StringLength = -2)] public string COMNAME { get; set; } [JsonProperty, Column(StringLength = -2)] public string CompId { get; set; } [JsonProperty, Column(StringLength = -2)] public string COMTYPE { get; set; } [JsonProperty, Column(StringLength = -2)] public string CREATEUSER { get; set; } [JsonProperty, Column(Name = "cscode", StringLength = -2)] public string Cscode { get; set; } [JsonProperty] public DateTime? DELETETIME { get; set; } [JsonProperty, Column(StringLength = -2)] public string DELETEUSER { get; set; } [JsonProperty] public DateTime? ENROLLTIME { get; set; } [JsonProperty, Column(StringLength = -2)] public string FaSongFangDaiMa { get; set; } [JsonProperty, Column(Name = "isAllowGenerate")] public bool IsAllowGenerate { get; set; } [JsonProperty, Column(Name = "isAllowSend")] public bool IsAllowSend { get; set; } [JsonProperty] public bool? ISDELETED { get; set; } [JsonProperty] public bool? ISDISABLE { get; set; } [JsonProperty] public DateTime? MODIFIEDTIME { get; set; } [JsonProperty, Column(StringLength = -2)] public string MODIFIEDUSER { get; set; } [JsonProperty, Column(StringLength = -2)] public string NOCODE { get; set; } [JsonProperty, Column(StringLength = -2)] public string OPENID { get; set; } [JsonProperty, Column(StringLength = -2)] public string PASSWORD { get; set; } [JsonProperty, Column(Name = "ptEmail", StringLength = -2)] public string PtEmail { get; set; } [JsonProperty, Column(Name = "ptPhone", StringLength = -2)] public string PtPhone { get; set; } [JsonProperty, Column(StringLength = -2)] public string SHOWNAME { get; set; } [JsonProperty, Column(StringLength = -2)] public string USERNAME { get; set; } [JsonProperty, Column(StringLength = -2)] public string WeChatAccount { get; set; } [JsonProperty, Column(StringLength = -2)] public string YAOQINGMA { get; set; } } }