zhanghua
2025-07-16 c4c1c6cf89781eb06dc02b677a8954fdb2666c43
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() {