using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.PnCost.Models { public class JgxpriceEntity { /// /// 成本中心 /// private string processCode = ""; /// /// 工序点名称 /// private string processPoints = ""; /// /// 标准成本 /// private decimal? price = null; /// /// 成本中心 /// [Description("成本中心")] //[JsonProperty("processCode")] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 工序点名称 /// [Description("工序点名称")] //[JsonProperty("processPoints")] public string ProcessPoints { get { return processPoints; } set { processPoints = value; } } /// /// 标准成本 /// [Description("标准成本")] //[JsonProperty("price")] public decimal? Price { get { return price; } set { price = value; } } } }