wjc
2024-12-23 f753d8366041354da60b8096060f3ab5159e3880
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.eventbus;
 
import androidx.annotation.NonNull;
 
import java.io.Serializable;
 
/**
 * Created by Zoro
 * Created on 2023/9/18
 * description:
 */
public class EventNotifyAddAIMillimeterZTSuccessInfo implements Serializable {
    public EventNotifyAddAIMillimeterZTSuccessInfo() {
    }
 
    private String mac;
    private String code;
    private String ip;
 
    public EventNotifyAddAIMillimeterZTSuccessInfo(String mac, String code) {
        this.mac = mac;
        this.code = code;
    }
 
    public EventNotifyAddAIMillimeterZTSuccessInfo(String mac, String code, String ip) {
        this.mac = mac;
        this.code = code;
        this.ip = ip;
    }
 
    public String getIp() {
        return ip == null ? "" : ip;
    }
 
    public void setIp(@NonNull String ip) {
        this.ip = ip;
    }
 
    public String getMac() {
        return mac == null ? "" : mac;
    }
 
    public void setMac(@NonNull String mac) {
        this.mac = mac;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
}