| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.YdmBcPipeManage.Entity
- {
- public class MatBcMatS
- {
- [Description("选择")]
- public bool chk { get; set; }
- private string judgeStoveNo;
- private string flagStoveNoZg;
- private string qcmStaus;
- private decimal? actCount;
- private decimal? actWeight;
- private string storageName;
- private string batchNo;
- private string fixLen;
- private string fixNum;
- private string plineName;
- [Description("判定炉号")]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- [Description("标识炉号")]
- public string FlagStoveNoZg
- {
- get { return flagStoveNoZg; }
- set { flagStoveNoZg = value; }
- }
- [Description("批号")]
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- [Description("状态")]
- public string QcmStaus
- {
- get { return qcmStaus; }
- set { qcmStaus = value; }
- }
- [Description("支数")]
- public decimal? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- [Description("重量")]
- public decimal? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- [Description("仓库")]
- public string StorageName
- {
- get { return storageName; }
- set { storageName = value; }
- }
- [Description("倍尺数")]
- public string FixLen
- {
- get { return fixLen; }
- set { fixLen = value; }
- }
- [Description("单倍长")]
- public string FixNum
- {
- get { return fixNum; }
- set { fixNum = value; }
- }
- [Description("产线")]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- }
- }
|