wjc
2025-01-07 90d5f028ccdaaaf64286f9d632cb335a4d0544b9
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.hdl.sdk.link.core.bean.response;
 
import java.io.Serializable;
 
/**
 * Created by Tong on 2021/9/29.
 * 网关搜索
 */
public class GatewaySearchBean implements Serializable {
    private String device_model;
    private String device_name;
    private String device_mac;
    private String gatewayId;
    private String gatewayType;
    private String gateway_type;
    private String oid;
    private String ip_address;
    private String access_mode;
    private String master;
    private boolean isLocalEncrypt;//2021-11-11 新增
 
    public String getDevice_model() {
        return device_model;
    }
 
    public void setDevice_model(String device_model) {
        this.device_model = device_model;
    }
 
    public String getDevice_name() {
        return device_name;
    }
 
    public void setDevice_name(String device_name) {
        this.device_name = device_name;
    }
 
    public String getDevice_mac() {
        return device_mac;
    }
 
    public void setDevice_mac(String device_mac) {
        this.device_mac = device_mac;
    }
 
    public String getGatewayId() {
        return gatewayId;
    }
 
    public void setGatewayId(String gatewayId) {
        this.gatewayId = gatewayId;
    }
 
    public String getGatewayType() {
        return gatewayType;
    }
 
    public void setGatewayType(String gatewayType) {
        this.gatewayType = gatewayType;
    }
 
    public String getGateway_type() {
        return gateway_type;
    }
 
    public void setGateway_type(String gateway_type) {
        this.gateway_type = gateway_type;
    }
 
    public String getOid() {
        return oid;
    }
 
    public void setOid(String oid) {
        this.oid = oid;
    }
 
    public String getIp_address() {
        return ip_address;
    }
 
    public void setIp_address(String ip_address) {
        this.ip_address = ip_address;
    }
 
    public String getAccess_mode() {
        return access_mode;
    }
 
    public void setAccess_mode(String access_mode) {
        this.access_mode = access_mode;
    }
 
    public String getMaster() {
        return master;
    }
 
    public void setMaster(String master) {
        this.master = master;
    }
 
    public boolean isLocalEncrypt() {
        return isLocalEncrypt;
    }
 
    public void setLocalEncrypt(boolean localEncrypt) {
        isLocalEncrypt = localEncrypt;
    }
}