McpPlanIO.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. /// <summary>
  8. /// 计划投入产出物料描述
  9. /// </summary>
  10. [Serializable]
  11. public class McpPlanIO
  12. {
  13. private string planNo;
  14. public string PlanNo
  15. {
  16. get { return planNo; }
  17. set { planNo = value; }
  18. }
  19. private int ioType;
  20. public int IoType
  21. {
  22. get { return ioType; }
  23. set { ioType = value; }
  24. }
  25. private string materialCode;
  26. public string MaterialCode
  27. {
  28. get { return materialCode; }
  29. set { materialCode = value; }
  30. }
  31. private string materialName;
  32. public string MaterialName
  33. {
  34. get { return materialName; }
  35. set { materialName = value; }
  36. }
  37. private string standard;
  38. public string Standard
  39. {
  40. get { return standard; }
  41. set { standard = value; }
  42. }
  43. private int pieces;
  44. public int Pieces
  45. {
  46. get { return pieces; }
  47. set { pieces = value; }
  48. }
  49. private double weight;
  50. public double Weight
  51. {
  52. get { return weight; }
  53. set { weight = value; }
  54. }
  55. private double lengthMin;
  56. public double LengthMin
  57. {
  58. get { return lengthMin; }
  59. set { lengthMin = value; }
  60. }
  61. private double lengthMax;
  62. public double LengthMax
  63. {
  64. get { return lengthMax; }
  65. set { lengthMax = value; }
  66. }
  67. }
  68. }