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
| package org.jeecg.modules.eam.vo;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * 设备维保状态统计
| */
| @Data
| public class EquipmentStatusStatistics implements Serializable {
| /**
| * 状态
| */
| private String status;
| /**
| * 数量
| */
| private int totalNumber;
|
| /**
| * 状态转译
| */
| private String statusText;
|
| public EquipmentStatusStatistics() {}
|
| public EquipmentStatusStatistics(String status, String statusText) {
| this.status = status;
| this.statusText = statusText;
| }
|
| public void increase() {
| totalNumber++;
| }
| }
|
|