优化
This commit is contained in:
@@ -4,6 +4,11 @@ export interface DeviceVO {
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 绑定用户 ID
|
||||
*/
|
||||
userId?: string | number;
|
||||
|
||||
/**
|
||||
* 设备编号
|
||||
*/
|
||||
@@ -19,6 +24,11 @@ export interface DeviceVO {
|
||||
*/
|
||||
status: string;
|
||||
|
||||
/**
|
||||
* 后端按请求语言返回的状态展示文案
|
||||
*/
|
||||
statusLabel?: string;
|
||||
|
||||
/**
|
||||
* WiFi名称
|
||||
*/
|
||||
@@ -98,7 +108,6 @@ export interface DeviceVO {
|
||||
* 识别模式 0-蓝牙 1-蓝牙+人脸
|
||||
*/
|
||||
patternPerception?: string;
|
||||
|
||||
}
|
||||
|
||||
export interface DeviceForm extends BaseEntity {
|
||||
@@ -107,6 +116,11 @@ export interface DeviceForm extends BaseEntity {
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 绑定用户 ID
|
||||
*/
|
||||
userId?: string | number;
|
||||
|
||||
/**
|
||||
* 设备编号
|
||||
*/
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export interface MessageVO {
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
@@ -14,6 +14,11 @@ export interface MessageVO {
|
||||
*/
|
||||
categoryName: string;
|
||||
|
||||
/**
|
||||
* 后端按请求语言返回的告警类型展示文案
|
||||
*/
|
||||
categoryLabel?: string;
|
||||
|
||||
/**
|
||||
* 图片地址
|
||||
*/
|
||||
@@ -27,12 +32,11 @@ export interface MessageVO {
|
||||
* 视频地址
|
||||
*/
|
||||
video: string | number;
|
||||
|
||||
}
|
||||
|
||||
export interface MessageForm extends BaseEntity {
|
||||
/**
|
||||
*
|
||||
*
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
@@ -55,11 +59,9 @@ export interface MessageForm extends BaseEntity {
|
||||
* 视频地址
|
||||
*/
|
||||
video?: string | number;
|
||||
|
||||
}
|
||||
|
||||
export interface MessageQuery extends PageQuery {
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user