|
@@ -1029,4 +1029,24 @@ public class DeviceInfoDto {
|
|
|
private List<Long> deviceId;
|
|
|
}
|
|
|
|
|
|
+ @Data
|
|
|
+ @Accessors(chain = true)
|
|
|
+ public static class PlaceDeviceNumDto {
|
|
|
+ @ApiModelProperty("点位id")
|
|
|
+ private Long placeId;
|
|
|
+
|
|
|
+ @ApiModelProperty("点位ID列表")
|
|
|
+ private List<Long> placeIdList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Data
|
|
|
+ @Accessors(chain = true)
|
|
|
+ public static class PlaceDeviceNumVo {
|
|
|
+ @ApiModelProperty("点位id")
|
|
|
+ private Long placeId;
|
|
|
+
|
|
|
+ @ApiModelProperty("数量")
|
|
|
+ private Integer num;
|
|
|
+ }
|
|
|
+
|
|
|
}
|