fuliqi
2024-01-09 ebb1a448339bafc4c4849fdbc2291bd3a28261df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.ycl.vo.casePool;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
 
public class WorkOrderVO {
    @ExcelProperty(value = "姓名", index = 1)
    private String name;
    @ExcelProperty(value = "任务总数", index = 2)
    private Integer taskCount;
    @ExcelProperty(value = "已完成数量", index = 3)
    private Integer finishCount;
    @ExcelProperty(value = "未完成数量", index = 4)
    private Integer notFinishCount;
    @ExcelProperty(value = "完成率", index = 5)
    private Double finishRadio;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getTaskCount() {
        return taskCount;
    }
 
    public void setTaskCount(Integer taskCount) {
        this.taskCount = taskCount;
    }
 
    public Integer getFinishCount() {
        return finishCount;
    }
 
    public void setFinishCount(Integer finishCount) {
        this.finishCount = finishCount;
    }
 
    public Integer getNotFinishCount() {
        return this.taskCount - this.finishCount;
    }
 
    public void setNotFinishCount(Integer notFinishCount) {
        this.notFinishCount = notFinishCount;
    }
 
    public Double getFinishRadio() {
        return ((double) this.finishCount) / ((double) this.taskCount);
    }
 
    public void setFinishRadio(Double finishRadio) {
        this.finishRadio = finishRadio;
    }
}