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;
|
}
|
}
|