master
chentaisen 2024-08-27 18:47:48 +08:00
parent c16ef19bf1
commit 6d28b654dd
1 changed files with 2 additions and 2 deletions

View File

@ -60,14 +60,14 @@ public class RuleEditionController {
} }
/** /**
* id *
* *
* @param ruleEdition * @param ruleEdition
* @return * @return
*/ */
@PutMapping("/update") @PutMapping("/update")
@Operation(summary = "修改", description = "修改版本") @Operation(summary = "修改", description = "修改版本")
public Result update(@RequestBody @Validated RuleEdition ruleEdition) { public Result update(@RequestBody RuleEdition ruleEdition) {
return Result.success(ruleEditionService.updateById(ruleEdition)); return Result.success(ruleEditionService.updateById(ruleEdition));
} }