wxr
2022-11-23 1e7b3abd15d37f6c6bc97ac14922457b9604c275
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.mm.android.deviceaddmodule.mobilecommon.entity;
 
public class AddApResult extends DataInfo{
    private boolean isExist;   //配件是否存在(配件是否上报了硬件信息)
    private String apName;   //配件名称
    private String apType;   //配件的类型
    private String apModel;   //配件的型号
    private String apVersion;   //配件的版本号
    private int apStatus;   //配件的在线状态:1-在线 0-离线
    private String apEnable;   //配件的使能:on-使能开启 ,off-使能关闭
    private int ioType;   //配件输入输出类型,-1:未知 0-输入 1-输出
 
    public boolean isExist() {
        return isExist;
    }
 
    public void setExist(boolean exist) {
        isExist = exist;
    }
 
    public String getApName() {
        return apName;
    }
 
    public void setApName(String apName) {
        this.apName = apName;
    }
 
    public String getApType() {
        return apType;
    }
 
    public void setApType(String apType) {
        this.apType = apType;
    }
 
    public String getApModel() {
        return apModel;
    }
 
    public void setApModel(String apModel) {
        this.apModel = apModel;
    }
 
    public String getApVersion() {
        return apVersion;
    }
 
    public void setApVersion(String apVersion) {
        this.apVersion = apVersion;
    }
 
    public int getApStatus() {
        return apStatus;
    }
 
    public void setApStatus(int apStatus) {
        this.apStatus = apStatus;
    }
 
    public String getApEnable() {
        return apEnable;
    }
 
    public void setApEnable(String apEnable) {
        this.apEnable = apEnable;
    }
 
    public int getIoType() {
        return ioType;
    }
 
    public void setIoType(int ioType) {
        this.ioType = ioType;
    }
}