MatZcMEntity3.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.YdmPipeManage.Entity
  7. {
  8. class MatZcMEntity3
  9. {
  10. private string measuringSeq;
  11. [Description("喷印管号")]
  12. public string MeasuringSeq
  13. {
  14. get { return measuringSeq; }
  15. set { measuringSeq = value; }
  16. }
  17. private string matNo;
  18. [Description("材料号")]
  19. public string MatNo
  20. {
  21. get { return matNo; }
  22. set { matNo = value; }
  23. }
  24. private String judgeStoveNo;
  25. [Description("炉号")]
  26. public String JudgeStoveNo
  27. {
  28. get { return judgeStoveNo; }
  29. set { judgeStoveNo = value; }
  30. }
  31. private String batchNo;
  32. [Description("批号")]
  33. public String BatchNo
  34. {
  35. get { return batchNo; }
  36. set { batchNo = value; }
  37. }
  38. private double? actLen;
  39. [Description("长度")]
  40. public double? ActLen
  41. {
  42. get { return actLen; }
  43. set { actLen = value; }
  44. }
  45. private double? actWeight;
  46. [Description("重量")]
  47. public double? ActWeight
  48. {
  49. get { return actWeight; }
  50. set { actWeight = value; }
  51. }
  52. private String pipmemo;
  53. [Description("入库备注")]
  54. public String Pipmemo
  55. {
  56. get { return pipmemo; }
  57. set { pipmemo = value; }
  58. }
  59. }
  60. }