wjc
2025-04-15 3b7a44351f3c961812ffa837302518646eae5b0d
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
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;
    }
}