| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PnCost.Models
- {
- public class BaseprocessbzcostEntity
- {
- /// <summary>
- /// JS_DATE
- /// </summary>
- private string jsDate = "";
- /// <summary>
- /// ASKPLAN_ID
- /// </summary>
- private string askplanId = "";
- /// <summary>
- /// ORD_NO
- /// </summary>
- private string ordNo = "";
- /// <summary>
- /// ORD_SEQ
- /// </summary>
- private string ordSeq = "";
- /// <summary>
- /// SPETKEY
- /// </summary>
- private string spetkey = "";
- /// <summary>
- /// STEELCODEKEY
- /// </summary>
- private string steelcodekey = "";
- /// <summary>
- /// MODEL_DESC
- /// </summary>
- private string modelDesc = "";
- /// <summary>
- /// WAIJIN
- /// </summary>
- private decimal? waijin = null;
- /// <summary>
- /// BIHOU
- /// </summary>
- private decimal? bihou = null;
- /// <summary>
- /// WLNAME
- /// </summary>
- private string wlname = "";
- /// <summary>
- /// STOVE_NO
- /// </summary>
- private string stoveNo = "";
- /// <summary>
- /// COMPANYTYPE
- /// </summary>
- private string companytype = "";
- /// <summary>
- /// WEIGHT
- /// </summary>
- private decimal? weight = null;
- /// <summary>
- /// MONEY
- /// </summary>
- private decimal? money = null;
- /// <summary>
- /// INCEPTCORPCODE
- /// </summary>
- private string inceptcorpcode = "";
- /// <summary>
- /// STEELNAME
- /// </summary>
- private string steelname = "";
- /// <summary>
- /// ARTICLENAME
- /// </summary>
- private string articlename = "";
- /// <summary>
- /// ID
- /// </summary>
- private string id = "";
- /// <summary>
- /// IS_CAL
- /// </summary>
- private decimal? isCal = null;
- /// <summary>
- /// JS_DATE
- /// </summary>
- [Description("结算日期")]
- //[JsonProperty("jsDate")]
- public string JsDate
- {
- get { return jsDate; }
- set { jsDate = value; }
- }
- /// <summary>
- /// ASKPLAN_ID
- /// </summary>
- [Description("提单号")]
- //[JsonProperty("askplanId")]
- public string AskplanId
- {
- get { return askplanId; }
- set { askplanId = value; }
- }
- /// <summary>
- /// ORD_NO
- /// </summary>
- [Description("合同号")]
- //[JsonProperty("ordNo")]
- public string OrdNo
- {
- get { return ordNo; }
- set { ordNo = value; }
- }
- /// <summary>
- /// ORD_SEQ
- /// </summary>
- [Description("订单号")]
- //[JsonProperty("ordSeq")]
- public string OrdSeq
- {
- get { return ordSeq; }
- set { ordSeq = value; }
- }
- /// <summary>
- /// SPETKEY
- /// </summary>
- [Description("规格")]
- //[JsonProperty("spetkey")]
- public string Spetkey
- {
- get { return spetkey; }
- set { spetkey = value; }
- }
- /// <summary>
- /// STEELCODEKEY
- /// </summary>
- [Description("钢级")]
- //[JsonProperty("steelcodekey")]
- public string Steelcodekey
- {
- get { return steelcodekey; }
- set { steelcodekey = value; }
- }
- /// <summary>
- /// MODEL_DESC
- /// </summary>
- [Description("扣型")]
- //[JsonProperty("modelDesc")]
- public string ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- /// <summary>
- /// WAIJIN
- /// </summary>
- [Description("外径")]
- //[JsonProperty("waijin")]
- public decimal? Waijin
- {
- get { return waijin; }
- set { waijin = value; }
- }
- /// <summary>
- /// BIHOU
- /// </summary>
- [Description("壁厚")]
- //[JsonProperty("bihou")]
- public decimal? Bihou
- {
- get { return bihou; }
- set { bihou = value; }
- }
- /// <summary>
- /// WLNAME
- /// </summary>
- [Description("物料名称")]
- //[JsonProperty("wlname")]
- public string Wlname
- {
- get { return wlname; }
- set { wlname = value; }
- }
- /// <summary>
- /// STOVE_NO
- /// </summary>
- [Description("炉号")]
- //[JsonProperty("stoveNo")]
- public string StoveNo
- {
- get { return stoveNo; }
- set { stoveNo = value; }
- }
- /// <summary>
- /// COMPANYTYPE
- /// </summary>
- [Description("公司类型")]
- //[JsonProperty("companytype")]
- public string Companytype
- {
- get { return companytype; }
- set { companytype = value; }
- }
- /// <summary>
- /// WEIGHT
- /// </summary>
- [Description("销售重量")]
- //[JsonProperty("weight")]
- public decimal? Weight
- {
- get { return weight; }
- set { weight = value; }
- }
- /// <summary>
- /// MONEY
- /// </summary>
- [Description("结算金额")]
- //[JsonProperty("money")]
- public decimal? Money
- {
- get { return money; }
- set { money = value; }
- }
- /// <summary>
- /// INCEPTCORPCODE
- /// </summary>
- [Description("收货公司")]
- //[JsonProperty("inceptcorpcode")]
- public string Inceptcorpcode
- {
- get { return inceptcorpcode; }
- set { inceptcorpcode = value; }
- }
- /// <summary>
- /// STEELNAME
- /// </summary>
- [Description("钢种名称")]
- //[JsonProperty("steelname")]
- public string Steelname
- {
- get { return steelname; }
- set { steelname = value; }
- }
- /// <summary>
- /// ARTICLENAME
- /// </summary>
- [Description("品名")]
- //[JsonProperty("articlename")]
- public string Articlename
- {
- get { return articlename; }
- set { articlename = value; }
- }
- /// <summary>
- /// ID
- /// </summary>
- [Description("ID")]
- //[JsonProperty("id")]
- public string Id
- {
- get { return id; }
- set { id = value; }
- }
- /// <summary>
- /// IS_CAL
- /// </summary>
- [Description("是否结算")]
- //[JsonProperty("isCal")]
- public decimal? IsCal
- {
- get { return isCal; }
- set { isCal = value; }
- }
- }
- }
|