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.
126 lines
3.6 KiB
C#
126 lines
3.6 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 = "tMsWlDjHead", DisableSyncStructure = true)]
|
|
public partial class TMsWlDjHead {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)", IsPrimary = true, IsNullable = false)]
|
|
public string BillNo { get; set; } = "*";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
|
|
public string BillStatus { get; set; } = "0";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ClsName { 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(100)")]
|
|
public string CustName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string DetNation { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string DstArea { 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 = "numeric(18,2)")]
|
|
public decimal? Height { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? InsureTotal { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? JzDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? Length { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string LogisticsNo { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? LrDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string NeedArriveDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string NeedLoadDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? OneMil { 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? OverPNum { get; set; } = 0;
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? PKgs { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? PNum { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string Remark { 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(40)")]
|
|
public string SedArea { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string SedNation { 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(10)")]
|
|
public string UserName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? Weight { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? Wide { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4)", IsNullable = false)]
|
|
public string YwType { get; set; }
|
|
|
|
}
|
|
|
|
}
|