| | |
| | | |
| | | |
| | | 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() { |