wjc
2025-04-07 2661d1c7b0a4d77e59f828825246e3e8e3594aa6
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
package com.hdl.sdk.link.core.bean.eventbus;
 
import java.io.Serializable;
 
import androidx.annotation.NonNull;
 
/**
 * Created by Zoro
 * Created on 2023/10/19
 * description:
 */
public class EventNotifyAiMillimeterZTMacInfo implements Serializable {
    private String mac;
 
    public EventNotifyAiMillimeterZTMacInfo(String mac) {
        this.mac = mac;
    }
 
    public String getMac() {
        return mac == null ? "" : mac;
    }
 
    public void setMac(@NonNull String mac) {
        this.mac = mac;
    }
}