|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.op.device.controller;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder;
|
|
|
|
|
import com.op.common.core.web.domain.AjaxResult;
|
|
|
|
|
import com.op.device.domain.*;
|
|
|
|
|
import com.op.device.service.IDeviceInterfaceService;
|
|
|
|
@ -27,7 +28,8 @@ public class DeviceInterfaceController {
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/getRepairWorkOrder")
|
|
|
|
|
public AjaxResult getRepairWorkOrder() {
|
|
|
|
|
public AjaxResult getRepairWorkOrder(EquOperation equOperation) {
|
|
|
|
|
DynamicDataSourceContextHolder.push(equOperation.getPoolName());
|
|
|
|
|
return deviceInterfaceService.getRepairWorkOrder();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -38,6 +40,7 @@ public class DeviceInterfaceController {
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/getEquipmentInfo")
|
|
|
|
|
public AjaxResult getEquipmentInfo(EquOperation equOperation) {
|
|
|
|
|
DynamicDataSourceContextHolder.push(equOperation.getPoolName());
|
|
|
|
|
return deviceInterfaceService.getEquipmentInfo(equOperation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -48,6 +51,7 @@ public class DeviceInterfaceController {
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/getRepairQuantity")
|
|
|
|
|
public AjaxResult getRepairQuantity(EquOperation equOperation) {
|
|
|
|
|
DynamicDataSourceContextHolder.push(equOperation.getPoolName());
|
|
|
|
|
return deviceInterfaceService.getRepairQuantity(equOperation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -59,6 +63,7 @@ public class DeviceInterfaceController {
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/equipmentStability")
|
|
|
|
|
public AjaxResult getEquipmentStabilityList(EquOperation equOperation) {
|
|
|
|
|
DynamicDataSourceContextHolder.push(equOperation.getPoolName());
|
|
|
|
|
return deviceInterfaceService.getEquipmentStabilityList(equOperation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -70,6 +75,7 @@ public class DeviceInterfaceController {
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/equipmentIntactRate")
|
|
|
|
|
public AjaxResult getEquipmentIntactRate(EquOperation equOperation) {
|
|
|
|
|
DynamicDataSourceContextHolder.push(equOperation.getPoolName());
|
|
|
|
|
return deviceInterfaceService.getEquipmentIntactRate(equOperation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -79,6 +85,7 @@ public class DeviceInterfaceController {
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/getDeviceRefreshTime")
|
|
|
|
|
public AjaxResult getDeviceRefreshTime(EquOperation equOperation) {
|
|
|
|
|
DynamicDataSourceContextHolder.push(equOperation.getPoolName());
|
|
|
|
|
return deviceInterfaceService.getDeviceRefreshTime(equOperation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|