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 = "tMsWlBsHead", DisableSyncStructure = true)] public partial class TMsWlBsHead { [JsonProperty, Column(DbType = "varchar(20)", IsPrimary = true, IsNullable = false)] public string BillNo { get; set; } = "*"; [JsonProperty, Column(DbType = "varchar(100)")] public string BillRises1 { get; set; } [JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)] public string BillStatus { get; set; } = "0"; [JsonProperty, Column(DbType = "varchar(1)")] public string BSSTATUS { get; set; } [JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)] public string BsType { get; set; } = "0"; [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? CBM { get; set; } [JsonProperty, Column(DbType = "varchar(2000)")] public string ContainerNos { get; set; } [JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)] public string CustCode { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string CustDate { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CustLikeManCode { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CustLikeManName { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CustName { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CustTel { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string DetiLinkMan { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string DetiLinkTel { get; set; } [JsonProperty, Column(DbType = "varchar(400)")] public string DetiNation { get; set; } [JsonProperty, Column(DbType = "varchar(6)")] public string DispatchCode { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string DispatchName { get; set; } [JsonProperty, Column(DbType = "varchar(40)")] public string DstArea { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string EndPortDate { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string EtDate { get; set; } [JsonProperty, Column(DbType = "varchar(400)")] public string FactoryAddr { get; set; } [JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)] public string FeeOpStatus { get; set; } = "0"; [JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)] public string FeeStatus { get; set; } = "0"; [JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)] public string GId { get; set; } [JsonProperty, Column(DbType = "varchar(500)")] public string GoodsName { get; set; } [JsonProperty] public DateTime? JzDate { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? KGS { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string KINDPKGS { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string LoadPlace { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string LogisticsNo { get; set; } [JsonProperty] public DateTime? LrDate { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string MblNo { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string NeadLoadDate { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string NeedArriveDate { get; set; } [JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)] public string OrgCode { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string OrgName { get; set; } [JsonProperty] public int? PKGS { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string Remark { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string RtnYard { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string RtnYardCode { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string SalesCode { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string SalesName { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string SendYardCode { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string SendYardName { get; set; } [JsonProperty, Column(DbType = "timestamp")] public byte[] TimeMark { get; set; } [JsonProperty, Column(DbType = "varchar(6)")] public string UserCode { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string UserName { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string VoyVeg { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string VoyVegSe { get; set; } } }