using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.PnCost.Models { public class ModecoefficientEntity { /// /// 扣型 /// private string modelDesc = ""; /// /// 镦粗 /// private string upsetting = ""; /// /// 探伤 /// private string testing = ""; /// /// 螺纹加工 /// private string threading = ""; /// /// 系数 /// private decimal? threadcoefficient = null; /// /// 公端磷化 /// private string phosphating = ""; /// /// 拧接 /// private string screwing = ""; /// /// 水压 /// private string hydraulic = ""; /// /// 通径 /// private string pathway = ""; /// /// 测长称重 /// private string lengthweighing = ""; /// /// 标识喷漆 /// private string logopainting = ""; /// /// 包装 /// private string wrap = ""; /// /// 打捆 /// private string baling = ""; /// /// 接箍金额 /// private decimal? couplings = null; /// /// 扣型 /// [Description("扣型")] //[JsonProperty("modelDesc")] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 镦粗 /// [Description("镦粗")] //[JsonProperty("upsetting")] public string Upsetting { get { return upsetting; } set { upsetting = value; } } /// /// 探伤 /// [Description("探伤")] //[JsonProperty("testing")] public string Testing { get { return testing; } set { testing = value; } } /// /// 螺纹加工 /// [Description("螺纹加工")] //[JsonProperty("threading")] public string Threading { get { return threading; } set { threading = value; } } /// /// 系数 /// [Description("系数")] //[JsonProperty("threadcoefficient")] public decimal? Threadcoefficient { get { return threadcoefficient; } set { threadcoefficient = value; } } /// /// 公端磷化 /// [Description("公端磷化")] //[JsonProperty("phosphating")] public string Phosphating { get { return phosphating; } set { phosphating = value; } } /// /// 拧接 /// [Description("拧接")] //[JsonProperty("screwing")] public string Screwing { get { return screwing; } set { screwing = value; } } /// /// 水压 /// [Description("水压")] //[JsonProperty("hydraulic")] public string Hydraulic { get { return hydraulic; } set { hydraulic = value; } } /// /// 通径 /// [Description("通径")] //[JsonProperty("pathway")] public string Pathway { get { return pathway; } set { pathway = value; } } /// /// 测长称重 /// [Description("测长称重")] //[JsonProperty("lengthweighing")] public string Lengthweighing { get { return lengthweighing; } set { lengthweighing = value; } } /// /// 标识喷漆 /// [Description("标识喷漆")] //[JsonProperty("logopainting")] public string Logopainting { get { return logopainting; } set { logopainting = value; } } /// /// 包装 /// [Description("包装")] //[JsonProperty("wrap")] public string Wrap { get { return wrap; } set { wrap = value; } } /// /// 打捆 /// [Description("打捆")] //[JsonProperty("baling")] public string Baling { get { return baling; } set { baling = value; } } /// /// 接箍金额 /// [Description("接箍金额")] //[JsonProperty("couplings")] public decimal? Couplings { get { return couplings; } set { couplings = value; } } } }