fix: 设备最后上数时间,新增字段,接口调用,小程序显示。

This commit is contained in:
tianyongbao
2026-06-04 13:53:30 +08:00
parent d70076ac16
commit 0ae4dd2034
13 changed files with 259 additions and 0 deletions

View File

@@ -243,5 +243,10 @@ public class Device extends TenantEntity {
*/
private Integer valueBattery;
/**
* 最后上数时间
*/
private Date lastReportTime;
}

View File

@@ -270,5 +270,10 @@ public class DeviceBo extends BaseEntity {
*/
private Long batteryWarnLower;
/**
* 最后上数时间
*/
private Date lastReportTime;
}

View File

@@ -312,6 +312,12 @@ public class DeviceVo implements Serializable {
@ExcelProperty(value = "电量值")
private Integer valueBattery;
/**
* 最后上数时间
*/
@ExcelProperty(value = "最后上数时间")
private Date lastReportTime;
/**
* 手机号
*/