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.
117 lines
3.6 KiB
C#
117 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 = "VW_WMS_STOCKTAKE", DisableSyncStructure = true)]
|
|
public partial class VWWMSSTOCKTAKE {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ASSOCIATEDNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CHARGEUNIT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CONTRACTNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CUSTOMNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string GOODSGRADE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSMODEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string GOODSNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(18,0)")]
|
|
public decimal? GOODSNUM { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? GOODSSLICE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "GOODSSLICE_OUT", DbType = "numeric(38,4)")]
|
|
public decimal GOODSSLICEOUT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSSTANDARD { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPACK", DbType = "numeric(18,4)")]
|
|
public decimal HjGOODSPACK { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPACKACTUAL", DbType = "numeric(18,4)")]
|
|
public decimal HjGOODSPACKACTUAL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPACKPFSL", DbType = "numeric(38,4)")]
|
|
public decimal HjGOODSPACKPFSL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPACKSTOCK", DbType = "numeric(18,4)")]
|
|
public decimal HjGOODSPACKSTOCK { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPFSL_OUT", DbType = "numeric(38,6)")]
|
|
public decimal HjGOODSPFSLOUT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSRKSL", DbType = "numeric(18,6)")]
|
|
public decimal HjGOODSRKSL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSRKSLACTUAL", DbType = "numeric(18,4)")]
|
|
public decimal HjGOODSRKSLACTUAL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSSTOCK", DbType = "numeric(18,6)")]
|
|
public decimal HjGOODSSTOCK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1)")]
|
|
public string ISBONDED { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISCHANGE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool ISLOCK2 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string NID { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "putintype", StringLength = 20)]
|
|
public string Putintype { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string STORAGENAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(23,4)")]
|
|
public decimal? WeiWanShui { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "char(10)")]
|
|
public string WMSDATE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "wmsno", DbType = "varchar(100)")]
|
|
public string Wmsno { get; set; }
|
|
|
|
}
|
|
|
|
}
|