Merge branch 'main' into 6170

This commit is contained in:
2025-08-15 10:15:56 +08:00
5 changed files with 11 additions and 2 deletions

View File

@ -69,7 +69,7 @@ public class DeviceType extends TenantEntity {
* 型号字典用于APP页面跳转
*/
@Schema(name = "型号字典用于APP页面跳转")
private Integer modelDictionary;
private String modelDictionary;
}

View File

@ -33,6 +33,6 @@ public class DeviceTypeForm {
* 型号字典用于APP页面跳转
*/
@Schema(name = "型号字典用于APP页面跳转")
private Integer modelDictionary;
private String modelDictionary;
}

View File

@ -81,4 +81,9 @@ public class AppDeviceVo implements Serializable {
* 告警状态(0解除告警1告警)
*/
private String alarmStatus;
/**
* 设备详情页面
*/
private String detailPageUrl;
}