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 = "code_afr_edi", DisableSyncStructure = true)] public partial class CodeAfrEdi { /// /// 编号 /// [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); /// /// 收货人地址1 /// [JsonProperty, Column(DbType = "varchar(100)")] public string CONSIGNEEADDR1 { get; set; } = ""; /// /// 收货人地址2 /// [JsonProperty, Column(DbType = "varchar(100)")] public string CONSIGNEEADDR2 { get; set; } = ""; /// /// 收货人地址3 /// [JsonProperty, Column(DbType = "varchar(100)")] public string CONSIGNEEADDR3 { get; set; } = ""; /// /// 收货人联系人 /// [JsonProperty, Column(DbType = "varchar(25)")] public string CONSIGNEEATTN { get; set; } = ""; /// /// 收货人城市 /// [JsonProperty, Column(DbType = "varchar(30)")] public string CONSIGNEECITY { get; set; } = ""; /// /// 收货人国家 /// [JsonProperty, Column(DbType = "varchar(2)")] public string CONSIGNEECOUNTRY { get; set; } = ""; /// /// 收货人名称 /// [JsonProperty, Column(DbType = "varchar(100)")] public string CONSIGNEENAME { get; set; } = ""; /// /// 收货人邮编 /// [JsonProperty, Column(DbType = "varchar(10)")] public string CONSIGNEEPOSTCODE { get; set; } = ""; /// /// 收货人省 /// [JsonProperty, Column(DbType = "varchar(3)")] public string CONSIGNEEPROVINCE { get; set; } = ""; /// /// 收货人联系方式 /// [JsonProperty, Column(DbType = "varchar(50)")] public string CONSIGNEETEL { get; set; } = ""; /// /// 所属公司 /// [JsonProperty, Column(DbType = "varchar(50)")] public string CORPID { get; set; } = ""; /// /// 关联客户GID /// [JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)] public string LINKGID { get; set; } = ""; /// /// 更改操作时间 /// [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime? MODIFIEDTIME { get; set; } /// /// 更改操作人gid /// [JsonProperty, Column(DbType = "varchar(36)")] public string MODIFIEDUSER { get; set; } = ""; /// /// 通知人地址1 /// [JsonProperty, Column(DbType = "varchar(100)")] public string NOTIFYPARTYADDR1 { get; set; } = ""; /// /// 通知人地址2 /// [JsonProperty, Column(DbType = "varchar(100)")] public string NOTIFYPARTYADDR2 { get; set; } = ""; /// /// 通知人地址3 /// [JsonProperty, Column(DbType = "varchar(100)")] public string NOTIFYPARTYADDR3 { get; set; } = ""; /// /// 通知人联系人 /// [JsonProperty, Column(DbType = "varchar(25)")] public string NOTIFYPARTYATTN { get; set; } = ""; /// /// 通知人城市 /// [JsonProperty, Column(DbType = "varchar(30)")] public string NOTIFYPARTYCITY { get; set; } = ""; /// /// 通知人国家 /// [JsonProperty, Column(DbType = "varchar(2)")] public string NOTIFYPARTYCOUNTRY { get; set; } = ""; /// /// 通知人名称 /// [JsonProperty, Column(DbType = "varchar(100)")] public string NOTIFYPARTYNAME { get; set; } = ""; /// /// 通知人邮编 /// [JsonProperty, Column(DbType = "varchar(10)")] public string NOTIFYPARTYPOSTCODE { get; set; } = ""; /// /// 通知人省 /// [JsonProperty, Column(DbType = "varchar(3)")] public string NOTIFYPARTYPROVINCE { get; set; } = ""; /// /// 通知人联系方式 /// [JsonProperty, Column(DbType = "varchar(50)")] public string NOTIFYPARTYTEL { get; set; } = ""; /// /// 发货人地址1 /// [JsonProperty, Column(DbType = "varchar(100)")] public string SHIPPERADDR1 { get; set; } = ""; /// /// 发货人地址2 /// [JsonProperty, Column(DbType = "varchar(100)")] public string SHIPPERADDR2 { get; set; } = ""; /// /// 发货人地址3 /// [JsonProperty, Column(DbType = "varchar(100)")] public string SHIPPERADDR3 { get; set; } = ""; /// /// 发货人联系人 /// [JsonProperty, Column(DbType = "varchar(25)")] public string SHIPPERATTN { get; set; } = ""; /// /// SHIPPERCITY /// [JsonProperty, Column(DbType = "varchar(30)")] public string SHIPPERCITY { get; set; } = ""; /// /// 发货人国家 /// [JsonProperty, Column(DbType = "varchar(2)")] public string SHIPPERCOUNTRY { get; set; } = ""; /// /// 发货人名称 /// [JsonProperty, Column(DbType = "varchar(100)")] public string SHIPPERNAME { get; set; } = ""; /// /// 发货人邮编 /// [JsonProperty, Column(DbType = "varchar(10)")] public string SHIPPERPOSTCODE { get; set; } = ""; /// /// 发货人省 /// [JsonProperty, Column(DbType = "varchar(3)")] public string SHIPPERPROVINCE { get; set; } = ""; /// /// 发货人联系方式 /// [JsonProperty, Column(DbType = "varchar(50)")] public string SHIPPERTEL { get; set; } = ""; } }