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;
|
}
|
}
|