You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.0 KiB
C#
138 lines
4.0 KiB
C#
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 = "tMsWlBulkHead", DisableSyncStructure = true)]
|
|
public partial class TMsWlBulkHead {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)", IsPrimary = true, IsNullable = false)]
|
|
public string BillNo { get; set; } = "*";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string ArrivalDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4)", IsNullable = false)]
|
|
public string BillStatus { get; set; } = "0";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CargoLevel { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ClsName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string Consignee { 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 CustLinkman { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string CustName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string DepartureDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string DetiNation { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? DumpPrice { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
|
|
public string GId { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? JzDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string LinkTel { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string LoadItem { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string LoadPlace { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
|
public decimal LoadPrice { get; set; } = 0M;
|
|
|
|
[JsonProperty]
|
|
public DateTime? LrDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
|
public decimal OneMil { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string OrgCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string OrgName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string PackSpec { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
|
public string PayCustCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string PayCustName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string PayDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? RealWeight { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string RptDate { 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 Shipper { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "timestamp")]
|
|
public byte[] TimeMark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
|
public decimal TransPrice { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string UnLoadPlace { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(6)")]
|
|
public string UserCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string UserName { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? WcDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
|
public decimal Weight { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4)")]
|
|
public string YwType { get; set; }
|
|
|
|
}
|
|
|
|
}
|