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.

48 lines
1.4 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_ZX", DisableSyncStructure = true)]
public partial class VWWMSSTOCKTAKEZX {
[JsonProperty, Column(DbType = "varchar(20)")]
public string CLIENTNAME { 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(38,2)")]
public decimal GOODSPACK { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal GOODSPACKSTOCK { get; set; }
[JsonProperty, Column(DbType = "numeric(38,4)")]
public decimal GOODSRKSL { get; set; }
[JsonProperty, Column(DbType = "numeric(38,4)")]
public decimal GOODSSTOCK { get; set; }
[JsonProperty, Column(Name = "hj_GOODSPACKPFSL", DbType = "numeric(38,2)")]
public decimal HjGOODSPACKPFSL { get; set; }
[JsonProperty, Column(Name = "hj_GOODSPFSL_OUT", DbType = "numeric(38,4)")]
public decimal HjGOODSPFSLOUT { get; set; }
[JsonProperty, Column(DbType = "varchar(220)")]
public string NID { get; set; }
}
}