New file |
| | |
| | | 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;
|
| | | }
|
| | | }
|