|
@@ -105,6 +105,13 @@ public class DeviceInfoServiceImpl extends ServiceImpl<DeviceInfoMapper, DeviceI
|
|
|
|
|
|
private final DeviceAlgorithmChargingServiceImpl deviceAlgorithmChargingService;
|
|
private final DeviceAlgorithmChargingServiceImpl deviceAlgorithmChargingService;
|
|
|
|
|
|
|
|
+
|
|
|
|
+ @ApiOperation("点位设备数量查询")
|
|
|
|
+ @Override
|
|
|
|
+ public R<List<DeviceInfoDto.PlaceDeviceNumVo>> placeDeviceNum(@RequestBody @Validated DeviceInfoDto.PlaceDeviceNumDto dto){
|
|
|
|
+ return R.ok(baseMapper.placeDeviceNum(dto));
|
|
|
|
+ }
|
|
|
|
+
|
|
@ApiOperation("设备列表带卡包数")
|
|
@ApiOperation("设备列表带卡包数")
|
|
@PostMapping("algorithmChargingDevice")
|
|
@PostMapping("algorithmChargingDevice")
|
|
public R<PageBean<DeviceInfoDto.AlgorithmChargingVo>> algorithmChargingDevice(@RequestBody @Validated DeviceInfoDto.AlgorithmCharging algorithmCharging) {
|
|
public R<PageBean<DeviceInfoDto.AlgorithmChargingVo>> algorithmChargingDevice(@RequestBody @Validated DeviceInfoDto.AlgorithmCharging algorithmCharging) {
|