app/src/main/java/safeluck/drive/evaluation/bean/AYBluetoothDevice.java
@@ -1,5 +1,7 @@
package safeluck.drive.evaluation.bean;
import android.bluetooth.BluetoothDevice;
/**
 * DriveJudge
 * Created by lzw on 2020/9/1. 13:44:50
@@ -7,9 +9,18 @@
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
public class AYBluetoothDevice {
    public String SSID;
    public AYBluetoothDevice(String s) {
        this.SSID= s;
    private  BluetoothDevice bleDevice;
    public AYBluetoothDevice(BluetoothDevice s) {
        this.bleDevice= s;
    }
    public BluetoothDevice getBleDevice() {
        return bleDevice;
    }
    public void setBleDevice(BluetoothDevice bleDevice) {
        this.bleDevice = bleDevice;
    }
}