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 = "op_seae_edi_ctn", DisableSyncStructure = true)] public partial class OpSeaeEdiCtn { [JsonProperty, Column(Name = "ctn_id", DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string CtnId { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string APICTNID { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? CBM { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string ChengZhongFangShi { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string ChengZhongShiJian { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? ChengZhongZhongLiang { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string CNTRNO { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string CTN { get; set; } [JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)] public string CTNALL { get; set; } [JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)] public string CTNCODE { get; set; } [JsonProperty] public int CTNNUM { get; set; } [JsonProperty, Column(DbType = "varchar(16)")] public string CTNOWNER { get; set; } [JsonProperty, Column(DbType = "varchar(2)")] public string CTOFORIGIN { get; set; } [JsonProperty, Column(DbType = "varchar(2000)")] public string DESCRIPTION { get; set; } [JsonProperty, Column(DbType = "varchar(6)")] public string DUNNO { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? GOODVALUE { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string HTS { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? KGS { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string KINDPKGS { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string LeiXingFa { get; set; } = ""; [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string LeiXingShou { get; set; } = ""; [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string LeiXingTong { get; set; } = ""; [JsonProperty, Column(DbType = "varchar(600)")] public string MARKS { get; set; } [JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)] public string MFNO { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal PIZHONG { get; set; } = 0M; [JsonProperty] public int? PKGS { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string PO { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string SEALNO { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string ShiFengRen { get; set; } = ""; [JsonProperty, Column(DbType = "varchar(2)")] public string SIZE { get; set; } [JsonProperty, Column(DbType = "varchar(15)")] public string SKU { get; set; } [JsonProperty, Column(DbType = "varchar(40)")] public string SKUDESCRIP { get; set; } [JsonProperty] public int TEU { get; set; } [JsonProperty] public int? ZhongKongBiaoShi { get; set; } = 5; } }