郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
37
38
39
40
41
42
package com.gkhy.safePlatform.safeCheck.model.dto.resp;
 
import java.io.Serializable;
 
/**
 * 巡检指标单位-类型
 */
public class SafeCheckQuotaTypeRespDTO implements Serializable {
 
    private int id;
 
    //指标类型
    private String type;
 
    //指标单位
    private String unit;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
}