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 = "VW_WMS_DETAIL_ZX", DisableSyncStructure = true)] public partial class VWWMSDETAILZX { [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? APFEE { get; set; } [JsonProperty, Column(Name = "APFEE_OUT", DbType = "numeric(18,2)")] public decimal? APFEEOUT { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string AREANAME { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? ARFEE { get; set; } [JsonProperty, Column(Name = "ARFEE_OUT", DbType = "numeric(18,2)")] public decimal? ARFEEOUT { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string ASSOCIATEDNO { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string CHARGEUNIT { get; set; } [JsonProperty, Column(Name = "CHARGEUNIT_OUT", DbType = "varchar(10)")] public string CHARGEUNITOUT { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CLIENTBSNO { get; set; } [JsonProperty, Column(Name = "CLIENTBSNO_OUT", DbType = "varchar(100)")] public string CLIENTBSNOOUT { get; set; } [JsonProperty, Column(Name = "CREATETIME_OUT")] public DateTime? CREATETIMEOUT { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string CUSTOMERNAME { get; set; } [JsonProperty, Column(Name = "DODATE_OUT", DbType = "char(10)")] public string DODATEOUT { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? GOODSKGS { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string GOODSMODEL { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string GOODSNAME { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? GOODSPACK { get; set; } [JsonProperty, Column(Name = "GOODSPACK_OUT", DbType = "varchar(50)")] public string GOODSPACKOUT { get; set; } [JsonProperty, Column(Name = "GOODSPACKPFSL_OUT", DbType = "numeric(18,4)")] public decimal? GOODSPACKPFSLOUT { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? GOODSPACKSTOCK { get; set; } [JsonProperty, Column(Name = "GOODSPACKSTOCK_OUT", DbType = "numeric(19,4)")] public decimal? GOODSPACKSTOCKOUT { get; set; } [JsonProperty, Column(Name = "GOODSPFSL_OUT", DbType = "numeric(18,4)")] public decimal? GOODSPFSLOUT { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? GOODSRKSL { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? GOODSSTOCK { get; set; } [JsonProperty, Column(Name = "GOODSSTOCK_OUT", DbType = "numeric(19,4)")] public decimal? GOODSSTOCKOUT { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string GOODSTYPE { get; set; } [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string NID { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string OUTBSNO { get; set; } [JsonProperty, Column(DbType = "varchar(1024)")] public string REMARK { get; set; } [JsonProperty, Column(Name = "REMARK_OUT", DbType = "varchar(1024)")] public string REMARKOUT { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string STORAGENAME { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string STOREMAN { get; set; } [JsonProperty, Column(Name = "STOREMAN_OUT", DbType = "varchar(10)")] public string STOREMANOUT { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string TRUCKNAME { get; set; } [JsonProperty, Column(Name = "TRUCKNAME_OUT", DbType = "varchar(20)")] public string TRUCKNAMEOUT { get; set; } [JsonProperty, Column(Name = "TRUCKNO_OUT", DbType = "varchar(500)")] public string TRUCKNOOUT { get; set; } [JsonProperty, Column(DbType = "char(10)")] public string WMSDATE { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string WMSNO { get; set; } [JsonProperty, Column(DbType = "varchar(10)")] public string WMSOP { get; set; } [JsonProperty, Column(Name = "WMSOP_OUT", DbType = "varchar(10)")] public string WMSOPOUT { get; set; } } }