package com.hdl.sdk.link.core.bean.response;
|
|
/**
|
* Created by jlchen on 11/15/21.
|
*
|
* @Description : NetworkAccessBroadcastResponse
|
*/
|
public class NetworkAccessBroadcastResponse extends BaseResponse {
|
private String ip_address;
|
private String oid;
|
private String homeId;
|
|
public String getIPAddress() { return ip_address; }
|
public void setIPAddress(String value) { this.ip_address = value; }
|
|
public String getOID() { return oid; }
|
public void setOID(String value) { this.oid = value; }
|
|
public String getHomeID() { return homeId; }
|
public void setHomeID(String value) { this.homeId = value; }
|
|
}
|