package com.gkhy.safePlatform.equipment.model.dto.resp;
|
|
import com.gkhy.safePlatform.equipment.entity.*;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class EquipmentStatisticsDto implements Serializable {
|
//停用状态 1:停用 2.在用 3.维修 4.报废
|
private String stopStatus;
|
//总数
|
private String count;
|
|
public String getStopStatus() {
|
return stopStatus;
|
}
|
|
public void setStopStatus(String stopStatus) {
|
this.stopStatus = stopStatus;
|
}
|
|
public String getCount() {
|
return count;
|
}
|
|
public void setCount(String count) {
|
this.count = count;
|
}
|
}
|