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
| package com.moral.api.pojo.dto.allocation;
|
|
| import lombok.Data;
|
| @Data
| public class AllocationUnitViewDto {
|
|
|
| private String unitName;
|
| /**
| * 总数
| */
| private Integer total;
|
| /**
| * 完成数
| */
| private Integer number;
| /**
| *未完成数
| */
| private Integer unNumber;
|
| /**
| * 完成率
| */
| private String rate;
|
|
| /**
| * 减分
| */
| private Integer deduction;
|
| /**
| * 加分
| */
| private Integer marks;
| /**
| * 总分
| */
| private Integer totalPoints;
| }
|
|