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