This commit is contained in:
yuhaiming
2026-07-28 10:19:36 +08:00
parent f5dc2e2c3a
commit ab7ec17ae0
36 changed files with 1760 additions and 533 deletions

View File

@@ -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;
/**
* 设备编号
*/

View File

@@ -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 {
/**
* 类型
*/