songhuangfeng123
2022-07-25 32da2384eb71a24ce325cc21e893db847ea450be
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
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;
    }
}