|
@@ -62,6 +62,27 @@ public class DeviceInfoDto {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @Data
|
|
|
+ @Accessors(chain = true)
|
|
|
+ public static class EventList {
|
|
|
+
|
|
|
+ @NotBlank(message = "code不能为空")
|
|
|
+ @ApiModelProperty(value = "事件编码", required = true)
|
|
|
+ private String code;
|
|
|
+
|
|
|
+ @NotNull(message = "size不能空")
|
|
|
+ @ApiModelProperty(value = "大于等于次数", required = true)
|
|
|
+ private Integer size;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "开始时间", required = true)
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private LocalDateTime beginTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "结束时间", required = true)
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private LocalDateTime endTime;
|
|
|
+ }
|
|
|
+
|
|
|
@Data
|
|
|
@Accessors(chain = true)
|
|
|
public static class AlgorithmCharging {
|
|
@@ -444,10 +465,6 @@ public class DeviceInfoDto {
|
|
|
|
|
|
@ApiModelProperty("温度设置信息")
|
|
|
private TempSetInfo tempSetInfo;
|
|
|
-
|
|
|
- @ApiModelProperty("工作温度设置值")
|
|
|
- private Integer jobTempSetValue;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
@Data
|
|
@@ -480,13 +497,6 @@ public class DeviceInfoDto {
|
|
|
@ApiModelProperty(value = "最小温度告警值")
|
|
|
private Integer tempMin;
|
|
|
|
|
|
- @ApiModelProperty(value = "缺货率预警值")
|
|
|
- private Integer stockOutRate;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "缺货种类预警值")
|
|
|
- private Integer stockOutGoodsNum;
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
@Data
|
|
@@ -875,9 +885,6 @@ public class DeviceInfoDto {
|
|
|
@ApiModelProperty("右门锁机状态,字典类型:devcie_lock_status")
|
|
|
private Integer deviceStateR;
|
|
|
|
|
|
- @ApiModelProperty("通电状态")
|
|
|
- private Integer sysPower;
|
|
|
-
|
|
|
}
|
|
|
|
|
|
|
|
@@ -1113,4 +1120,13 @@ public class DeviceInfoDto {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ @Data
|
|
|
+ @Accessors(chain = true)
|
|
|
+ public static class EventListVo extends Vo {
|
|
|
+
|
|
|
+ @ApiModelProperty("事件发生次数")
|
|
|
+ private Integer size;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|