设备增加蓝牙字段
This commit is contained in:
@ -4,5 +4,44 @@ export interface deviceQuery extends PageQuery {
|
||||
deviceImei: string;
|
||||
deviceType: string;
|
||||
deviceStatus: string;
|
||||
bluetoothName?: string; // 蓝牙名称查询字段
|
||||
}
|
||||
|
||||
export interface deviceForm {
|
||||
id?: string | number;
|
||||
deviceName: string;
|
||||
deviceMac?: string;
|
||||
deviceImei?: string;
|
||||
deviceType: string;
|
||||
devicePic?: string;
|
||||
image?: string | File;
|
||||
remark?: string;
|
||||
password?: string;
|
||||
customerId?: string | number;
|
||||
bluetoothName?: string; // 蓝牙名称字段
|
||||
}
|
||||
|
||||
export interface deviceVO {
|
||||
id: string | number;
|
||||
deviceName: string;
|
||||
deviceMac?: string;
|
||||
deviceImei?: string;
|
||||
deviceType: string;
|
||||
devicePic?: string;
|
||||
deviceStatus: number;
|
||||
bindingStatus: number;
|
||||
remark?: string;
|
||||
createTime?: string;
|
||||
createByName?: string;
|
||||
customerName?: string;
|
||||
customerId?: string | number;
|
||||
typeName?: string;
|
||||
bluetoothName?: string; // 蓝牙名称字段
|
||||
}
|
||||
|
||||
export interface deviceTypeOption {
|
||||
id: string | number;
|
||||
typeName: string;
|
||||
value: string | number;
|
||||
communicationMode?: string;
|
||||
}
|
Reference in New Issue
Block a user