锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.8 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity
  6. {
  7. public class ITEM2ROUTE2OP2TIMEawt
  8. {
  9. public string ITEMID { get; set; }
  10. public string ITEMCODE { get; set; }
  11. public string ITEMNAME { get; set; }
  12. public string USERID { get; set; }
  13. public string USERCODE{ get; set; }
  14. public string USERNAME { get; set; }
  15. public string WorkPoint { get; set; }
  16. public DateTime MTIME { get; set; }
  17. public List<ROUTEawt> listRoute { get; set; }
  18. }
  19. public class ROUTEawt
  20. {
  21. public string ROUTEID { get; set; }
  22. public string ROUTECODE { get; set; }
  23. public string ROUTENAME { get; set; }
  24. public string ROUTEDESC{ get; set; }
  25. public string MGR_USER { get; set; }
  26. public string ENABLED { get; set; }//生效/失效
  27. public string ROUTEVER { get; set; }
  28. public string ROUTETYPE { get; set; }
  29. public DateTime EFFDATE { get; set; }
  30. public DateTime IVLDATE { get; set; }
  31. public List<OPTIMEawt> listOP { get; set; }
  32. }
  33. /// <summary>
  34. /// 1.工序信息
  35. /// 2.物料-工艺-工序对应的设备标准工时
  36. /// </summary>
  37. public class OPTIMEawt
  38. {
  39. public string ID { get; set; }
  40. public string OriOPCODE { get; set; }
  41. public int OPSEQ { get; set; }
  42. public string OPID { get; set; }
  43. public string OPCODE { get; set; }
  44. public string OPDESC { get; set; }
  45. public string OPNAME { get; set; }
  46. public string OPAttr { get; set; }
  47. public string CtrlType { get; set; }
  48. public string OPLVL { get; set; }
  49. public string CostCenter { get; set; }
  50. public string OpFrom { get; set; }
  51. public bool EnableFlag { get; set; }
  52. public string OPCOLLECTION { get; set; }
  53. public string OPCONTROL { get; set; }
  54. public decimal STIME { get; set; }
  55. public decimal RTIME { get; set; }
  56. public decimal? WTIME { get; set; }
  57. public decimal JYTime { get; set; }
  58. public decimal ZJTime { get; set; }
  59. public string Type { get; set; }
  60. public string { get; set; }
  61. public string Status { get; set; }
  62. public string cClass { get; set; }
  63. public int cHandles { get; set; }
  64. public int cAxis { get; set; }
  65. public int cToolMagazine { get; set; }
  66. public int cMachinableProfiles { get; set; }
  67. public string cAccuracy { get; set; }
  68. public string Memo { get; set; }
  69. public string EQPCODE { get; set; }
  70. public string CXTYPE { get; set; }
  71. public string CXJD { get; set; }
  72. public string CXBrand1 { get; set; }
  73. public string CXBrand2 { get; set; }
  74. public string CXBrand3 { get; set; }
  75. }
  76. }