| | |
| | | @Api(tags = "在线监测-实时监控") |
| | | @RestController |
| | | @RequestMapping("PwrappAcinfAction") |
| | | public class PwrappAcinfController { |
| | | public class PwrappAcinfController extends BaseController{ |
| | | @Autowired |
| | | private PwrappAcinfService service; |
| | | |
| | |
| | | public Response updatePowerACConfigById(@RequestBody PwrappAcinf acinf){ |
| | | return service.updatePowerACConfigById(acinf); |
| | | } |
| | | @ApiOperation(value = "读取电源ac设备设置",notes = "PowerConfigAction_power_getPowerACConfigById") |
| | | @GetMapping("getPowerACConfigById") |
| | | public Response getPowerACConfigById(@RequestParam int powerDeviceId){ |
| | | return service.getPowerACConfigById(powerDeviceId); |
| | | } |
| | | } |