| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- 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
- {
- /// <summary>
- /// 材料支数(实际)
- /// </summary>
- private decimal? actCount = null;
- /// <summary>
- /// 材料实重(实际)
- /// </summary>
- private decimal? actWeight = null;
- /// <summary>
- /// 材料支数(实际)
- /// </summary>
- private decimal? offlineCount = null;
- /// <summary>
- /// 材料实重(实际)
- /// </summary>
- private decimal? offlineWeight = null;
- /// <summary>
- /// 材料支数(实际)
- /// </summary>
- private decimal? editCount = null;
- /// <summary>
- /// 实际热处理取样分批(性能批号)
- /// </summary>
- private string phyBatchNo = "";
- /// <summary>
- /// 热处理次数
- /// </summary>
- private decimal? processSeq = null;
- /// <summary>
- /// 材料支数(实际)
- /// </summary>
- [Description("合格支数")]
- [JsonProperty("actCount")]
- public decimal? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- [Description("编辑支数")]
- [JsonProperty("actCount")]
- public decimal? EditCount
- {
- get { return editCount; }
- set { editCount = value; }
- }
- /// <summary>
- /// 材料实重(实际)
- /// </summary>
- [Description("合格重量")]
- [JsonProperty("actWeight")]
- public decimal? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- [Description("已离线支数")]
- [JsonProperty("offlineCount")]
- public decimal? OfflineCount
- {
- get { return offlineCount; }
- set { offlineCount = value; }
- }
- /// <summary>
- /// 材料实重(实际)
- /// </summary>
- [Description("已离线重量")]
- [JsonProperty("offlineWeight")]
- public decimal? OfflineWeight
- {
- get { return offlineWeight; }
- set { offlineWeight = value; }
- }
- /// <summary>
- /// 实际热处理取样分批(性能批号)
- /// </summary>
- [Description("批号")]
- [JsonProperty("phyBatchNo")]
- public string PhyBatchNo
- {
- get { return phyBatchNo; }
- set { phyBatchNo = value; }
- }
- /// <summary>
- /// 热处理次数
- /// </summary>
- [Description("热处理次数")]
- [JsonProperty("processSeq")]
- public decimal? ProcessSeq
- {
- get { return processSeq; }
- set { processSeq = value; }
- }
- }
- }
|