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.
60 lines
1.9 KiB
C#
60 lines
1.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 = "VW_WMS_STOCKTAKE_2", DisableSyncStructure = true)]
|
|
public partial class VWWMSSTOCKTAKE2 {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CHARGEUNIT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal GOODSSLICE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GOODSSTANDARD { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPACK", DbType = "numeric(38,4)")]
|
|
public decimal HjGOODSPACK { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPACKACTUAL", DbType = "numeric(38,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(38,4)")]
|
|
public decimal HjGOODSPACKSTOCK { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSPFSL_OUT", DbType = "numeric(38,4)")]
|
|
public decimal HjGOODSPFSLOUT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSRKSL", DbType = "numeric(38,4)")]
|
|
public decimal HjGOODSRKSL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSRKSLACTUAL", DbType = "numeric(38,4)")]
|
|
public decimal HjGOODSRKSLACTUAL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "hj_GOODSSTOCK", DbType = "numeric(38,4)")]
|
|
public decimal HjGOODSSTOCK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1264)")]
|
|
public string NID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1024)")]
|
|
public string REMARK { get; set; }
|
|
|
|
}
|
|
|
|
}
|