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 = "V_ORDER_CTNSTATUS", DisableSyncStructure = true)] public partial class VORDERCTNSTATUS { [JsonProperty] public DateTime? BSDATE { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string BSNO { get; set; } [JsonProperty, Column(DbType = "char(1)")] public string CARGOID { 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(4000)")] public string CNTRTOTAL { get; set; } [JsonProperty, Column(Name = "CTN_ID", DbType = "varchar(36)", IsNullable = false)] public string CTNID { 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(100)")] public string CTNSTATUS { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string CTNSTATUSDATE { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string DESTINATION { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string DESTINATIONID { get; set; } [JsonProperty, Column(DbType = "smalldatetime")] public DateTime? ETD { get; set; } [JsonProperty, Column(DbType = "numeric(18,3)")] public decimal? KGS { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string MBLNO { get; set; } [JsonProperty, Column(DbType = "char(1)")] public string ORSTATUS { get; set; } [JsonProperty] public int? PKGS { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string PLACEDELIVERY { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string PLACEDELIVERYID { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string PORTDISCHARGE { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string PORTDISCHARGEID { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string PORTLOAD { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string PORTLOADID { 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(50)")] public string SERVICE { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string VESSEL { get; set; } [JsonProperty, Column(DbType = "varchar(12)")] public string VOYNO { get; set; } } }