package com.hdl.photovoltaic.ui.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* 自定义蓝牙实体对象
|
*/
|
public class CustomBluetoothBean implements Serializable {
|
private String bluetoothName;
|
private String bluetoothMac;
|
private String uuid;
|
|
public String getBluetoothName() {
|
return bluetoothName == null ? "" : bluetoothName;
|
}
|
|
public void setBluetoothName(String name) {
|
this.bluetoothName = name;
|
}
|
|
public String getBluetoothMac() {
|
return bluetoothMac == null ? "" : bluetoothMac;
|
}
|
|
public void setBluetoothMac(String mac) {
|
this.bluetoothMac = mac;
|
}
|
|
public String getUuid() {
|
return uuid == null ? "" : uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
}
|