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_seaorder_ctn", DisableSyncStructure = true)] public partial class OpSeaorderCtn { [JsonProperty, Column(Name = "CTN_ID", DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string CTNID { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string BSNO { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? CBM { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string CNTRNO { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string CTNALL { get; set; } [JsonProperty, Column(DbType = "varchar(4)")] public string CTNCODE { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CTNSOURCE { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CTNSTATUS { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string CTNSTATUSDATE { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string GOODSNAME { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? KGS { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string KINDPKGS { get; set; } [JsonProperty] public int? PKGS { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string REMARK { get; set; } [JsonProperty, Column(DbType = "varchar(12)")] public string SEALNO { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string STATUS { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? TAREWEIGHT { get; set; } } }