|
@@ -53,9 +53,6 @@ public class DeviceInfoDto {
|
|
@ApiModelProperty("下位机版本号")
|
|
@ApiModelProperty("下位机版本号")
|
|
private String appDownmVersion;
|
|
private String appDownmVersion;
|
|
|
|
|
|
- @ApiModelProperty("质量状态")
|
|
|
|
- private Integer qualityState;
|
|
|
|
-
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@ApiModelProperty(value = "激活时间-起")
|
|
@ApiModelProperty(value = "激活时间-起")
|
|
private LocalDate beginActiveTime;
|
|
private LocalDate beginActiveTime;
|
|
@@ -72,6 +69,14 @@ public class DeviceInfoDto {
|
|
return endActiveTime == null ? null : endActiveTime.atTime(23, 59, 59);
|
|
return endActiveTime == null ? null : endActiveTime.atTime(23, 59, 59);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "系统信息", hidden = true)
|
|
|
|
+ private DeviceSysinfoDto.Vo deviceSysinfo;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "状态信息", hidden = true)
|
|
|
|
+ private DeviceStatusDto.Vo deviceStatus;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "注册信息", hidden = true)
|
|
|
|
+ private DeviceRegisterDto.Vo deviceRegister;
|
|
}
|
|
}
|
|
|
|
|
|
@Data
|
|
@Data
|
|
@@ -112,6 +117,9 @@ public class DeviceInfoDto {
|
|
@ApiModelProperty("运营状态")
|
|
@ApiModelProperty("运营状态")
|
|
private Integer busyState;
|
|
private Integer busyState;
|
|
|
|
|
|
|
|
+ @ApiModelProperty("显示状态")
|
|
|
|
+ private Integer showStatus;
|
|
|
|
+
|
|
@ApiModelProperty("设备图片")
|
|
@ApiModelProperty("设备图片")
|
|
private String deviceImg;
|
|
private String deviceImg;
|
|
|
|
|
|
@@ -133,4 +141,29 @@ public class DeviceInfoDto {
|
|
private DeviceRegisterDto.Vo deviceRegister;
|
|
private DeviceRegisterDto.Vo deviceRegister;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Data
|
|
|
|
+ @Accessors(chain = true)
|
|
|
|
+ public static class Vo2 extends Vo {
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("安卓版本号")
|
|
|
|
+ private String androidVersion;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("sn号")
|
|
|
|
+ private String deviceSn;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("联网状态")
|
|
|
|
+ private Integer netState;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("商户名称")
|
|
|
|
+ private String mercName;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("联网类型")
|
|
|
|
+ private String netType;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("信号强度")
|
|
|
|
+ private Integer netDbm;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("锁机状态")
|
|
|
|
+ private Integer deviceState;
|
|
|
|
+ }
|
|
}
|
|
}
|