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 = "COMNAME_INFO", DisableSyncStructure = true)] public partial class COMNAMEINFO { [JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); [JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)] public string COMNAME { get; set; } = ""; [JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)] public string COMXJCODE { get; set; } = ""; [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime CREATETIME { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string EPortCardNO { get; set; } [JsonProperty] public int? ISPXCOMPANY { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string PXCOMACCOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string PXCOMPASSWORD { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string YitongAccount { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string YitongPassword { get; set; } } }