DeviceQuality.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. package com.xy.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import lombok.experimental.Accessors;
  7. import java.io.Serializable;
  8. import java.time.LocalDateTime;
  9. /**
  10. * <p>
  11. * 设备-质检
  12. * </p>
  13. *
  14. * @author lijin
  15. * @since 2023-01-05
  16. */
  17. @Data
  18. @Accessors(chain = true)
  19. @EqualsAndHashCode(callSuper = false)
  20. public class DeviceQuality implements Serializable {
  21. private static final long serialVersionUID = 1L;
  22. /**
  23. * 质检id
  24. */
  25. @TableId(value = "quality_id", type = IdType.AUTO)
  26. private Integer qualityId;
  27. /**
  28. * 设备ID
  29. */
  30. private Long deviceId;
  31. /**
  32. * 设备类型
  33. */
  34. private Integer deviceType;
  35. /**
  36. * 质检状态审核人ID
  37. */
  38. private Long qualityAuditUserId;
  39. /**
  40. * 出厂审核人ID
  41. */
  42. private Long factoryAuditUserId;
  43. /**
  44. * 出厂状态
  45. */
  46. private Integer factoryState;
  47. /**
  48. * 合格状态
  49. */
  50. private Integer qualityState;
  51. /**
  52. * 交易测试状态
  53. */
  54. private Integer tradeState;
  55. /**
  56. * 交易测试状态开始时间
  57. */
  58. private LocalDateTime tradeStateBeginTime;
  59. /**
  60. * 交易测试状态结束时间
  61. */
  62. private LocalDateTime tradeStateEndTime;
  63. /**
  64. * 门锁状态
  65. */
  66. private Integer lockerState;
  67. /**
  68. * 门锁状态开始时间
  69. */
  70. private LocalDateTime lockerStateBeginTime;
  71. /**
  72. * 门锁状态结束时间
  73. */
  74. private LocalDateTime lockerStateEndTime;
  75. /**
  76. * 温度检测状态
  77. */
  78. private Integer temperatureState;
  79. /**
  80. * 温度检测状态开始时间
  81. */
  82. private LocalDateTime temperatureStateBeginTime;
  83. /**
  84. * 温度检测状态结束时间
  85. */
  86. private LocalDateTime temperatureStateEndTime;
  87. /**
  88. * 模拟批量测试状态
  89. */
  90. private Integer imitateTestState;
  91. /**
  92. * 模拟批量测试状态开始时间
  93. */
  94. private LocalDateTime imitateTestStateBeginTime;
  95. /**
  96. * 模拟批量测试状态结束时间
  97. */
  98. private LocalDateTime imitateTestStateEndTime;
  99. /**
  100. * 软件硬系统状态
  101. */
  102. private Integer systemState;
  103. /**
  104. * 软件硬系统状态开始时间
  105. */
  106. private LocalDateTime systemStateBeginTime;
  107. /**
  108. * 软件硬系统状态结束时间
  109. */
  110. private LocalDateTime systemStateEndTime;
  111. /**
  112. * 参数设置状态
  113. */
  114. private Integer settingState;
  115. /**
  116. * 参数设置状态开始时间
  117. */
  118. private LocalDateTime settingStateBeginTime;
  119. /**
  120. * 参数设置状态结束时间
  121. */
  122. private LocalDateTime settingStateEndTime;
  123. /**
  124. * 更新时间
  125. */
  126. private LocalDateTime updateTime;
  127. /**
  128. * 创建时间
  129. */
  130. private LocalDateTime createTime;
  131. /**
  132. * 显示状态
  133. */
  134. private Boolean showStatus;
  135. }