fix: 设备管理,告警通知,设备告警,优化手机端展示。

This commit is contained in:
tianyongbao
2026-04-11 19:47:53 +08:00
parent e8791e9371
commit 40fb6196b2
8 changed files with 847 additions and 5 deletions

View File

@@ -84,6 +84,36 @@ export interface CallNoticeVO {
*/
voiceType: string;
/**
* 呼叫时间
*/
callTime?: string;
/**
* 用户名(关联查询)
*/
userName?: string;
/**
* 设备编号(关联查询)
*/
serialNum?: string;
/**
* 设备类型(关联查询)
*/
deviceType?: number;
/**
* 告警类型
*/
warnType?: number;
/**
* 告警标题
*/
warnTitle?: string;
}
export interface CallNoticeForm extends BaseEntity {

View File

@@ -214,6 +214,26 @@ export interface DeviceVO {
*/
batteryWarnLower: number;
/**
* 用户名(关联查询)
*/
userName?: string;
/**
* 手机号(关联查询)
*/
mobilePhone?: string;
/**
* 塘口名称(关联查询)
*/
pondName?: string;
/**
* 创建时间(激活时间)
*/
createTime?: string;
}
export interface DeviceForm extends BaseEntity {

View File

@@ -69,6 +69,11 @@ export interface MessageWarnVO {
*/
createTime?: string;
/**
* 电话通知次数
*/
callNoticeCount?: number;
}
export interface MessageWarnForm extends BaseEntity {