whycxzp
2023-12-22 6320368558f548b4a3a07228e52d5ebed4818401
src/main/java/com/whyc/controller/CKPowerDevBattRtStateSetController.java
@@ -22,10 +22,16 @@
    @Autowired
    private CKPowerDevBattRtStateSetService service;
    @ApiOperation("设置")
    @ApiOperation("设置单体")
    @PostMapping("update")
    public Response update(@RequestBody BattRtSetDto set){
        return service.update(set);
    public Response updateMon(@RequestBody BattRtSetDto set){
        return service.updateMon(set);
    }
    @ApiOperation("设置组端")
    @PostMapping("updateGroup")
    public Response updateGroup(@RequestBody CKPowerDevBattRtStateSet set){
        return service.updateGroup(set);
    }