cuilei
7 天以前 58020f3d711d4baa16ef092c2ea826071c7d23b9
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
package org.jeecg.modules.eam.vo;
 
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class EquipmentRepairStatistics implements Serializable {
    /**
     * 月份
     */
    private String monthStr;
    /**
     * 报修数
     */
    private Integer reportNumber;
    /**
     * 维修数
     */
    private Integer repairedNumber;
 
    public EquipmentRepairStatistics(){}
 
    public EquipmentRepairStatistics(String monthStr){
        this.monthStr = monthStr;
        this.reportNumber = 0;
        this.repairedNumber = 0;
    }
}