DataFormCtq.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TeamAAS_VP.Models
  8. {
  9. public class DataFormCtq : BindableBase
  10. {
  11. private string _PPID;
  12. /// <summary>
  13. /// sn
  14. /// </summary>
  15. public string PPID { get => _PPID; set => SetProperty(ref _PPID, value); }
  16. private int _ScrewNum;
  17. /// <summary>
  18. /// 螺丝编号
  19. /// </summary>
  20. public int ScrewNum { get => _ScrewNum; set => SetProperty(ref _ScrewNum, value); }
  21. private string _PROCESS_NAME;
  22. /// <summary>
  23. /// 设备名称
  24. /// </summary>
  25. public string PROCESS_NAME { get => _PROCESS_NAME; set => SetProperty(ref _PROCESS_NAME, value); }
  26. private string _PROCESS_START_TIME;
  27. /// <summary>
  28. /// 开始时间
  29. /// </summary>
  30. public string PROCESS_START_TIME { get => _PROCESS_START_TIME; set => SetProperty(ref _PROCESS_START_TIME, value); }
  31. private string _CTQ_NAME;
  32. /// <summary>
  33. /// 检测项名称
  34. /// </summary>
  35. public string CTQ_NAME { get => _CTQ_NAME; set => SetProperty(ref _CTQ_NAME, value); }
  36. private double _CTQ_VALUE;
  37. /// <summary>
  38. /// 检测值
  39. /// </summary>
  40. public double CTQ_VALUE { get => _CTQ_VALUE; set => SetProperty(ref _CTQ_VALUE, value); }
  41. private double _CTQ_LSL;
  42. /// <summary>
  43. /// 下限
  44. /// </summary>
  45. public double CTQ_LSL { get => _CTQ_LSL; set => SetProperty(ref _CTQ_LSL, value); }
  46. private double _CTQ_USL;
  47. /// <summary>
  48. /// 上限
  49. /// </summary>
  50. public double CTQ_USL { get => _CTQ_USL; set => SetProperty(ref _CTQ_USL, value); }
  51. private string _PROCESS_END_TIME;
  52. /// <summary>
  53. /// 结束时间
  54. /// </summary>
  55. public string PROCESS_END_TIME { get => _PROCESS_END_TIME; set => SetProperty(ref _PROCESS_END_TIME, value); }
  56. private string _SUPPLIER_NAME;
  57. public string SUPPLIER_NAME { get => _SUPPLIER_NAME; set => SetProperty(ref _SUPPLIER_NAME, value); }
  58. private string _COMMODITY_TYPE;
  59. public string COMMODITY_TYPE { get => _COMMODITY_TYPE; set => SetProperty(ref _COMMODITY_TYPE, value); }
  60. private string _REVISION;
  61. public string REVISION { get => _REVISION; set => SetProperty(ref _REVISION, value); }
  62. private string _WO;
  63. /// <summary>
  64. /// 工单号
  65. /// </summary>
  66. public string WO { get => _WO; set => SetProperty(ref _WO, value); }
  67. private string _MFG_LOT;
  68. public string MFG_LOT { get => _MFG_LOT; set => SetProperty(ref _MFG_LOT, value); }
  69. private string _MFG_ASSY_LINE;
  70. /// <summary>
  71. /// 线体
  72. /// </summary>
  73. public string MFG_ASSY_LINE { get => _MFG_ASSY_LINE; set => SetProperty(ref _MFG_ASSY_LINE, value); }
  74. private string _PROCESS_OUTCOME;
  75. /// <summary>
  76. /// 结果
  77. /// </summary>
  78. public string PROCESS_OUTCOME { get => _PROCESS_OUTCOME; set => SetProperty(ref _PROCESS_OUTCOME, value); }
  79. private string _PROCESS_MACHINE_ID;
  80. /// <summary>
  81. /// 设备ID
  82. /// </summary>
  83. public string PROCESS_MACHINE_ID { get => _PROCESS_MACHINE_ID; set => SetProperty(ref _PROCESS_MACHINE_ID, value); }
  84. private string _CTQ_UNIT_OF_MEASURE;
  85. /// <summary>
  86. /// 单位
  87. /// </summary>
  88. public string CTQ_UNIT_OF_MEASURE { get => _CTQ_UNIT_OF_MEASURE; set => SetProperty(ref _CTQ_UNIT_OF_MEASURE, value); }
  89. private string _ERROR_MESSAGE;
  90. /// <summary>
  91. /// 报错信息
  92. /// </summary>
  93. public string ERROR_MESSAGE { get => _ERROR_MESSAGE; set => SetProperty(ref _ERROR_MESSAGE, value); }
  94. private string _PD_ATTR_01;
  95. /// <summary>
  96. /// 附加信息1--中值
  97. /// </summary>
  98. public string PD_ATTR_01 { get => _PD_ATTR_01; set => SetProperty(ref _PD_ATTR_01, value); }
  99. private string _PD_ATTR_02;
  100. /// <summary>
  101. /// 附加信息2--物料SN
  102. /// </summary>
  103. public string PD_ATTR_02 { get => _PD_ATTR_02; set => SetProperty(ref _PD_ATTR_02, value); }
  104. private string _PD_ATTR_03;
  105. /// <summary>
  106. /// 附加信息3--小件SN
  107. /// </summary>
  108. public string PD_ATTR_03 { get => _PD_ATTR_03; set => SetProperty(ref _PD_ATTR_03, value); }
  109. private string _PD_ATTR_04;
  110. /// <summary>
  111. /// 附加信息4
  112. /// </summary>
  113. public string PD_ATTR_04 { get => _PD_ATTR_04; set => SetProperty(ref _PD_ATTR_04, value); }
  114. private string _PD_ATTR_05;
  115. /// <summary>
  116. /// 附加信息5
  117. /// </summary>
  118. public string PD_ATTR_05 { get => _PD_ATTR_05; set => SetProperty(ref _PD_ATTR_05, value); }
  119. }
  120. }