using FreeSql.DataAnnotations; using Newtonsoft.Json; using System; using System.ComponentModel.DataAnnotations; namespace djy.Model.Isf { [JsonObject(MemberSerialization.OptIn), Table(Name = "ISF_Company", DisableSyncStructure = true)] public class ISF_Company { [MaxLength(50)] [JsonProperty, Column(IsPrimary = true, IsNullable = false)] public string GID { get; set; } [MaxLength(50)] public string PID { get; set; } /// /// 公司类型 /// [MaxLength(50)] public string CompanyType { get; set; } /// /// 公司ID /// public string CompanyId { get; set; } /// /// 公司名称 /// [MaxLength(50)] public string CompanyName { get; set; } /// /// id类型代码 /// [MaxLength(50)] public string IdTypeCode { get; set; } /// /// 地址 /// [MaxLength(100)] public string Address { get; set; } /// /// 城市 /// [MaxLength(50)] public string City { get; set; } /// /// 省份 /// [MaxLength(50)] public string Province { get; set; } /// /// 省份代码 /// [MaxLength(50)] public string ProvinceCode { get; set; } /// /// 国家代码 /// [MaxLength(50)] public string CountryCode { get; set; } /// /// 国家 /// [MaxLength(50)] public string CountryName { get; set; } /// /// 邮编 /// [MaxLength(50)] public string PostCode { get; set; } /// /// HSTCode多个用英文逗号隔开 /// [MaxLength(50)] public string HstCode { get; set; } ///// ///// 进出口类型(1.进口2.出口) ///// //[MaxLength(50)] public string IeType { get; set; } public bool? IsDel { get; set; } public string State { get; set; } } }