MatBcMatS.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Core.StlMes.Client.YdmBcPipeManage.Entity
  7. {
  8. public class MatBcMatS
  9. {
  10. [Description("选择")]
  11. public bool chk { get; set; }
  12. private string judgeStoveNo;
  13. private string flagStoveNoZg;
  14. private string qcmStaus;
  15. private decimal? actCount;
  16. private decimal? actWeight;
  17. private string storageName;
  18. private string batchNo;
  19. private string fixLen;
  20. private string fixNum;
  21. private string plineName;
  22. [Description("判定炉号")]
  23. public string JudgeStoveNo
  24. {
  25. get { return judgeStoveNo; }
  26. set { judgeStoveNo = value; }
  27. }
  28. [Description("标识炉号")]
  29. public string FlagStoveNoZg
  30. {
  31. get { return flagStoveNoZg; }
  32. set { flagStoveNoZg = value; }
  33. }
  34. [Description("批号")]
  35. public string BatchNo
  36. {
  37. get { return batchNo; }
  38. set { batchNo = value; }
  39. }
  40. [Description("状态")]
  41. public string QcmStaus
  42. {
  43. get { return qcmStaus; }
  44. set { qcmStaus = value; }
  45. }
  46. [Description("支数")]
  47. public decimal? ActCount
  48. {
  49. get { return actCount; }
  50. set { actCount = value; }
  51. }
  52. [Description("重量")]
  53. public decimal? ActWeight
  54. {
  55. get { return actWeight; }
  56. set { actWeight = value; }
  57. }
  58. [Description("仓库")]
  59. public string StorageName
  60. {
  61. get { return storageName; }
  62. set { storageName = value; }
  63. }
  64. [Description("倍尺数")]
  65. public string FixLen
  66. {
  67. get { return fixLen; }
  68. set { fixLen = value; }
  69. }
  70. [Description("单倍长")]
  71. public string FixNum
  72. {
  73. get { return fixNum; }
  74. set { fixNum = value; }
  75. }
  76. [Description("产线")]
  77. public string PlineName
  78. {
  79. get { return plineName; }
  80. set { plineName = value; }
  81. }
  82. }
  83. }