zhanghua
7 天以前 e1a5409bfa2cca009160a961d9bff827ff133b1b
ycl-platform/src/main/java/com/ycl/vo/casePool/WorkOrderVO.java
@@ -5,15 +5,15 @@
public class WorkOrderVO {
    @ExcelProperty(value = "姓名", index = 1)
    @ExcelProperty(value = "姓名", index = 0)
    private String name;
    @ExcelProperty(value = "任务总数", index = 2)
    @ExcelProperty(value = "任务总数", index = 1)
    private Integer taskCount;
    @ExcelProperty(value = "已完成数量", index = 3)
    @ExcelProperty(value = "已完成数量", index = 2)
    private Integer finishCount;
    @ExcelProperty(value = "未完成数量", index = 4)
    @ExcelProperty(value = "未完成数量", index = 3)
    private Integer notFinishCount;
    @ExcelProperty(value = "完成率", index = 5)
    @ExcelProperty(value = "完成率", index = 4)
    private Double finishRadio;
    public String getName() {