| | |
| | | return service.searchBL(devId); |
| | | } |
| | | |
| | | @ApiOperation(value = "并联设备-设置参数", notes = "floatChargeVolt,disChargeVolt,dischargeVoltLimit,monomerLowVolt,monomerLowCount,autoEQChargeStartimeTime,autoEQChargetTime,opCmd,devId") |
| | | @ApiOperation(value = "并联设备-设置参数", notes = "floatChargeVolt,disChargeVolt,dischargeVoltLimit,monomerLowVolt,monomerLowCount,autoEQChargeStartimeTime,autoEQChargetTime,opCmd(命令59),devId") |
| | | @PostMapping("updateBL") |
| | | public Response updateBL(@RequestBody Fbs9100Sysparam fbs9100Sysparam) { |
| | | return service.updateBL(fbs9100Sysparam); |
| | | } |
| | | |
| | | @ApiOperation(value = "设置参数-61851参数") |
| | | @PostMapping("update61851") |
| | | public Response update61851(@RequestBody Fbs9100Sysparam fbs9100Sysparam) { |
| | | return service.update61851(fbs9100Sysparam); |
| | | } |
| | | |
| | | @ApiOperation(value = "读取参数-61851参数") |
| | | @PostMapping("search61851") |
| | | public Response search61851(@RequestParam int devId,@RequestParam int opCmd) { |
| | | return service.search61851(devId,opCmd); |
| | | } |
| | | |
| | | @ApiOperation(value = "设置参数-配网电源参数") |
| | | @PostMapping("updatePW") |
| | | public Response updatePW(@RequestBody Fbs9100Sysparam fbs9100Sysparam) { |
| | | return service.updatePW(fbs9100Sysparam); |
| | | } |
| | | |
| | | @ApiOperation(value = "读取参数-配网电源参数") |
| | | @PostMapping("searchPW") |
| | | public Response searchPW(@RequestParam int devId,@RequestParam int opCmd) { |
| | | return service.search61851(devId,opCmd); |
| | | } |
| | | |
| | | } |