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