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.

162 lines
4.9 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 = "vMsWlBsHeadPrint", DisableSyncStructure = true)]
public partial class VMsWlBsHeadPrint {
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string BillNo { get; set; }
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string BillStatus { get; set; }
[JsonProperty, Column(Name = "BillStatus_Ref", DbType = "varchar(40)")]
public string BillStatusRef { get; set; }
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string BsType { get; set; }
[JsonProperty, Column(Name = "BsType_Ref", DbType = "varchar(40)")]
public string BsTypeRef { 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(Name = "CustName_Ref", DbType = "varchar(20)")]
public string CustNameRef { 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(Name = "DispatchCode_Ref", DbType = "varchar(150)")]
public string DispatchCodeRef { 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(1)", IsNullable = false)]
public string FeeStatus { get; set; }
[JsonProperty, Column(Name = "FeeStatus_Ref", DbType = "varchar(40)")]
public string FeeStatusRef { get; set; }
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
public string GId { get; set; }
[JsonProperty]
public DateTime? JzDate { 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, 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(Name = "SalesCode_Ref", DbType = "varchar(150)")]
public string SalesCodeRef { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string SalesName { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string SendYardCode { get; set; }
[JsonProperty, Column(Name = "SendYardCode_Ref", DbType = "varchar(20)")]
public string SendYardCodeRef { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string SendYardName { get; set; }
[JsonProperty]
public long? TimeMark { get; set; }
[JsonProperty, Column(DbType = "varchar(6)")]
public string UserCode { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string UserName { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VoyVeg { get; set; }
[JsonProperty, Column(Name = "VoyVeg_Ref", DbType = "varchar(71)")]
public string VoyVegRef { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VoyVegSe { get; set; }
}
}