New file |
| | |
| | | package com.hdl.sdk.link.core.bean.request; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * Created by jlchen on 11/11/21. |
| | | * |
| | | * /user/all/custom/gateway/broadcast |
| | | */ |
| | | public class BroadcastRequest implements Serializable { |
| | | private String id; |
| | | private String time_stamp; |
| | | private AuthenticateRequest.AuthenticateDeviceInfoBean objects;//当前设备基本信息 |
| | | private String code;// |
| | | |
| | | public BroadcastRequest(String id, String time_stamp, AuthenticateRequest.AuthenticateDeviceInfoBean objects, String code) { |
| | | this.id = id; |
| | | this.time_stamp = time_stamp; |
| | | this.objects = objects; |
| | | this.code = code; |
| | | } |
| | | |
| | | public String getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(String id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getTime_stamp() { |
| | | return time_stamp; |
| | | } |
| | | |
| | | public void setTime_stamp(String time_stamp) { |
| | | this.time_stamp = time_stamp; |
| | | } |
| | | |
| | | public AuthenticateRequest.AuthenticateDeviceInfoBean getObjects() { |
| | | return objects; |
| | | } |
| | | |
| | | public void setObjects(AuthenticateRequest.AuthenticateDeviceInfoBean objects) { |
| | | this.objects = objects; |
| | | } |
| | | |
| | | public String getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | this.code = code; |
| | | } |
| | | } |