using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Newtonsoft.Json; namespace Core.StlMes.Client.YdmBcPipeManage.Entity { public class PlnZyRclMWithGroupPort:PlnZyRclMEntity { /// /// 材料支数(实际) /// private decimal? actCount = null; /// /// 材料实重(实际) /// private decimal? actWeight = null; /// /// 材料支数(实际) /// private decimal? offlineCount = null; /// /// 材料实重(实际) /// private decimal? offlineWeight = null; /// /// 材料支数(实际) /// private decimal? editCount = null; /// /// 实际热处理取样分批(性能批号) /// private string phyBatchNo = ""; /// /// 热处理次数 /// private decimal? processSeq = null; /// /// 材料支数(实际) /// [Description("合格支数")] [JsonProperty("actCount")] public decimal? ActCount { get { return actCount; } set { actCount = value; } } [Description("编辑支数")] [JsonProperty("actCount")] public decimal? EditCount { get { return editCount; } set { editCount = value; } } /// /// 材料实重(实际) /// [Description("合格重量")] [JsonProperty("actWeight")] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } [Description("已离线支数")] [JsonProperty("offlineCount")] public decimal? OfflineCount { get { return offlineCount; } set { offlineCount = value; } } /// /// 材料实重(实际) /// [Description("已离线重量")] [JsonProperty("offlineWeight")] public decimal? OfflineWeight { get { return offlineWeight; } set { offlineWeight = value; } } /// /// 实际热处理取样分批(性能批号) /// [Description("批号")] [JsonProperty("phyBatchNo")] public string PhyBatchNo { get { return phyBatchNo; } set { phyBatchNo = value; } } /// /// 热处理次数 /// [Description("热处理次数")] [JsonProperty("processSeq")] public decimal? ProcessSeq { get { return processSeq; } set { processSeq = value; } } } }