fix(watch): 最近一次代码合并

This commit is contained in:
2026-05-09 20:23:20 +08:00
parent 86fa43c284
commit 270c9a52f9
5 changed files with 69 additions and 59 deletions
@@ -18,9 +18,14 @@ public class DeptStatData {
/**
* 已分配设备数
*/
@Excel(name = "分配设备数", width = 15,orderNum = "4")
@Excel(name = "分配设备数", width = 15,orderNum = "4")
private Integer assignedDeviceNums;
/**
* 未分配设备数(入库设备数 - 已分配设备数,仅一、二级部门有值)
*/
@Excel(name = "未分配设备数", width = 15,orderNum = "5")
private Integer undistributedDeviceNums;
@Excel(name = "入库设备数", width = 15,orderNum = "3")
private Integer totalAssignedDeviceNums;
@@ -28,25 +33,22 @@ public class DeptStatData {
/**
* 佩戴人员数
*/
@Excel(name = "佩戴人员数", width = 15,orderNum = "5")
@Excel(name = "佩戴人员数", width = 15,orderNum = "6")
private Integer assignedUserNums;
/**
* 未佩戴人员数
*/
@Excel(name = "未佩戴人员数", width = 15,orderNum = "6")
@Excel(name = "未佩戴人员数", width = 15,orderNum = "7")
private Integer undistributedUserNums;
@Excel(name = "心率异常人数", width = 15,orderNum = "7")
@Excel(name = "心率异常人数", width = 15,orderNum = "8")
private Integer heartRateNums;
@Excel(name = "血氧异常人数", width = 15,orderNum = "8")
@Excel(name = "血氧异常人数", width = 15,orderNum = "9")
private Integer spo2Nums;
@Excel(name = "压力异常人数", width = 15,orderNum = "9")
@Excel(name = "压力异常人数", width = 15,orderNum = "10")
private Integer stressNums;
@Excel(name = "体温异常人数", width = 15,orderNum = "10")
@Excel(name = "体温异常人数", width = 15,orderNum = "11")
private Integer tempNums;
}