VrpMilEntity.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.steering.mes.mcp.entity
  6. {
  7. public class VrpMilEntity
  8. {
  9. private string batchNo;
  10. public string BatchNo
  11. {
  12. get { return batchNo; }
  13. set { batchNo = value; }
  14. }
  15. private int judgestoveNo;
  16. public int JudgestoveNo
  17. {
  18. get { return judgestoveNo; }
  19. set { judgestoveNo = value; }
  20. }
  21. private string proplanId;
  22. public string ProplanId
  23. {
  24. get { return proplanId; }
  25. set { proplanId = value; }
  26. }
  27. private string actmaterialName;
  28. public string ActmaterialName
  29. {
  30. get { return actmaterialName; }
  31. set { actmaterialName = value; }
  32. }
  33. private string proNum;
  34. public string ProNum
  35. {
  36. get { return proNum; }
  37. set { proNum = value; }
  38. }
  39. private string failNum;
  40. public string FailNum
  41. {
  42. get { return failNum; }
  43. set { failNum = value; }
  44. }
  45. private string liLun;
  46. public string LiLun
  47. {
  48. get { return liLun; }
  49. set { liLun = value; }
  50. }
  51. private string shiJi;
  52. public string ShiJi
  53. {
  54. get { return shiJi; }
  55. set { shiJi = value; }
  56. }
  57. private int chaZhi;
  58. public int ChaZhi
  59. {
  60. get { return chaZhi; }
  61. set { chaZhi = value; }
  62. }
  63. private string pCode;
  64. public string PCode
  65. {
  66. get { return pCode; }
  67. set { pCode = value; }
  68. }
  69. }
  70. }