|
@@ -0,0 +1,38 @@
|
|
|
|
+package com.rongwei.bsentity.dto;
|
|
|
|
+
|
|
|
|
+import lombok.*;
|
|
|
|
+
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+
|
|
|
|
+@Setter
|
|
|
|
+@Getter
|
|
|
|
+@NoArgsConstructor
|
|
|
|
+@AllArgsConstructor
|
|
|
|
+@Builder
|
|
|
|
+public class RectifyMachineDto {
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 整改总数
|
|
|
|
+ */
|
|
|
|
+ private Integer totalCount;
|
|
|
|
+ /**
|
|
|
|
+ * 完成率1
|
|
|
|
+ */
|
|
|
|
+ private BigDecimal finishRateOne;
|
|
|
|
+ /**
|
|
|
|
+ * 完成率2
|
|
|
|
+ */
|
|
|
|
+ private BigDecimal finishRateTwo;
|
|
|
|
+ /**
|
|
|
|
+ * 关闭数
|
|
|
|
+ */
|
|
|
|
+ private Integer closedCount;
|
|
|
|
+ /**
|
|
|
|
+ * 未完成数
|
|
|
|
+ */
|
|
|
|
+ private Integer unfinishedCount;
|
|
|
|
+ /**
|
|
|
|
+ * 待确认数
|
|
|
|
+ */
|
|
|
|
+ private Integer tbcCount;
|
|
|
|
+}
|