PreGxInfoEntity.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.PlnSaleOrd.Entity
  7. {
  8. public class PreGxInfoEntity
  9. {
  10. private string weigthS;
  11. [Description("排产重量")]
  12. public string WeigthS
  13. {
  14. get { return weigthS; }
  15. set { weigthS = value; }
  16. }
  17. private string numS;
  18. [Description("排产支数")]
  19. public string NumS
  20. {
  21. get { return numS; }
  22. set { numS = value; }
  23. }
  24. private string plineName;
  25. [Description("工序产线")]
  26. public string PlineName
  27. {
  28. get { return plineName; }
  29. set { plineName = value; }
  30. }
  31. private string planTimeB;
  32. [Description("计划开始时间")]
  33. public string PlanTimeB
  34. {
  35. get { return planTimeB; }
  36. set { planTimeB = value; }
  37. }
  38. private string planTimeE;
  39. [Description("计划结束时间")]
  40. public string PlanTimeE
  41. {
  42. get { return planTimeE; }
  43. set { planTimeE = value; }
  44. }
  45. private string processName;
  46. [Description("工序")]
  47. public string ProcessName
  48. {
  49. get { return processName; }
  50. set { processName = value; }
  51. }
  52. private string proPlanId;
  53. [Description("订单编号")]
  54. public string ProPlanId
  55. {
  56. get { return proPlanId; }
  57. set { proPlanId = value; }
  58. }
  59. private string gxPlanNo;
  60. [Description("排产序号")]
  61. public string GxPlanNo
  62. {
  63. get { return gxPlanNo; }
  64. set { gxPlanNo = value; }
  65. }
  66. }
  67. }