wjc
2026-03-31 56f5de5eb6c1501175e7a36b10cf3d1b57284b47
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
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;
    }
}