|
|
|
|
@@ -54,6 +54,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
@ApiImplicitParam(name = "deviceInfoParam", value = "查询终端条件", required = true)
|
|
|
|
|
})
|
|
|
|
|
@Deprecated
|
|
|
|
|
public HttpResult<List<GeneralDeviceDTO>> getPracticalRunDeviceInfoAsDept(@RequestBody @Validated DeviceInfoParam deviceInfoParam) {
|
|
|
|
|
String methodDescribe = getMethodDescribe("getPracticalRunDeviceInfoAsDept");
|
|
|
|
|
List<GeneralDeviceDTO> deptDeviceInfos = generalDeviceService.getDeviceInfoAsDept(deviceInfoParam, Stream.of(0).collect(Collectors.toList()), Stream.of(1).collect(Collectors.toList()));
|
|
|
|
|
@@ -73,6 +74,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
@ApiImplicitParam(name = "deviceInfoParam", value = "查询终端条件", required = true)
|
|
|
|
|
})
|
|
|
|
|
@Deprecated
|
|
|
|
|
public HttpResult<List<GeneralDeviceDTO>> getOfflineRunDeviceInfoAsDept(@RequestBody @Validated DeviceInfoParam deviceInfoParam) {
|
|
|
|
|
String methodDescribe = getMethodDescribe("getOfflineRunDeviceInfoAsDept");
|
|
|
|
|
List<GeneralDeviceDTO> deptDeviceInfos = generalDeviceService.getDeviceInfoAsDept(deviceInfoParam, Stream.of(0).collect(Collectors.toList()), Stream.of(2).collect(Collectors.toList()));
|
|
|
|
|
@@ -93,6 +95,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
@ApiImplicitParam(name = "deviceInfoParam", value = "查询终端条件", required = true)
|
|
|
|
|
})
|
|
|
|
|
@Deprecated
|
|
|
|
|
public HttpResult<List<GeneralDeviceDTO>> getPracticalAllDeviceInfoAsDept(@RequestBody @Validated DeviceInfoParam deviceInfoParam) {
|
|
|
|
|
String methodDescribe = getMethodDescribe("getPracticalAllDeviceInfoAsDept");
|
|
|
|
|
List<GeneralDeviceDTO> deptDeviceInfos = generalDeviceService.getDeviceInfoAsDept(deviceInfoParam, null, Stream.of(1).collect(Collectors.toList()));
|
|
|
|
|
@@ -120,6 +123,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
@ApiImplicitParam(name = "deviceInfoParam", value = "查询终端条件", required = true)
|
|
|
|
|
})
|
|
|
|
|
@Deprecated
|
|
|
|
|
public HttpResult<List<GeneralDeviceDTO>> getPracticalRunDeviceInfoAsSubstation(@RequestBody @Validated DeviceInfoParam deviceInfoParam) {
|
|
|
|
|
String methodDescribe = getMethodDescribe("getPracticalRunDeviceInfoAsSubstation");
|
|
|
|
|
List<GeneralDeviceDTO> substationDeviceInfos = generalDeviceService.getDeviceInfoAsSubstation(deviceInfoParam, Stream.of(0).collect(Collectors.toList()), Stream.of(1).collect(Collectors.toList()));
|
|
|
|
|
@@ -139,6 +143,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
@ApiImplicitParam(name = "deviceInfoParam", value = "查询终端条件", required = true)
|
|
|
|
|
})
|
|
|
|
|
@Deprecated
|
|
|
|
|
public HttpResult<List<GeneralDeviceDTO>> getPracticalRunDeviceInfo(@RequestBody @Validated DeviceInfoParam deviceInfoParam) {
|
|
|
|
|
String methodDescribe = getMethodDescribe("getPracticalRunDeviceInfo");
|
|
|
|
|
List<GeneralDeviceDTO> deptDeviceInfos = generalDeviceService.getDeviceInfo(deviceInfoParam, Stream.of(0).collect(Collectors.toList()), Stream.of(1).collect(Collectors.toList()));
|
|
|
|
|
@@ -158,6 +163,7 @@ public class GeneralDeviceInfoController extends BaseController {
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
@ApiImplicitParam(name = "deviceInfoParam", value = "查询终端条件", required = true)
|
|
|
|
|
})
|
|
|
|
|
@Deprecated
|
|
|
|
|
public HttpResult<List<GeneralDeviceDTO>> getOfflineRunDeviceInfo(@RequestBody @Validated DeviceInfoParam deviceInfoParam) {
|
|
|
|
|
String methodDescribe = getMethodDescribe("getOfflineRunDeviceInfo");
|
|
|
|
|
List<GeneralDeviceDTO> deptDeviceInfos = generalDeviceService.getDeviceInfo(deviceInfoParam, Stream.of(0).collect(Collectors.toList()), Stream.of(2).collect(Collectors.toList()));
|
|
|
|
|
|