| | |
| | | package safeluck.drive.evaluation.bean; |
| | | |
| | | import android.bluetooth.BluetoothDevice; |
| | | |
| | | /** |
| | | * DriveJudge |
| | | * Created by lzw on 2020/9/1. 13:44:50 |
| | |
| | | * 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; |
| | | } |
| | | |
| | | |
| | | } |