zhuang 1 год назад
Родитель
Сommit
043d53d138

+ 39 - 0
business-entity/src/main/java/com/rongwei/bsentity/dto/RectifyDto.java

@@ -0,0 +1,39 @@
+package com.rongwei.bsentity.dto;
+
+import lombok.*;
+
+import java.util.List;
+
+@Setter
+@Getter
+@NoArgsConstructor
+@AllArgsConstructor
+@Builder
+public class RectifyDto {
+
+    /**
+     * 一级部门ID
+     */
+    private String firstdeptid;
+    /**
+     * 一级部门
+     */
+    private String firstdeptname;
+
+    /**
+     * 施工部门ID
+     */
+    private String deptid;
+    /**
+     * 施工部门
+     */
+    private String deptname;
+    /**
+     * 机号列表
+     */
+    private List<String> machineNoList;
+    /**
+     * 统计数据
+     */
+    private List<RectifyMachineDto> data;
+}

+ 38 - 0
business-entity/src/main/java/com/rongwei/bsentity/dto/RectifyMachineDto.java

@@ -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;
+}