master
chentaisen 2024-09-04 12:10:46 +08:00
parent ae549eb6dd
commit 3cfd14485d
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class RuleController {
*/ */
@RequestMapping(path = "/list", method = RequestMethod.POST) @RequestMapping(path = "/list", method = RequestMethod.POST)
@Operation(summary = "查看规则", description = "查看规则") @Operation(summary = "查看规则", description = "查看规则")
public Result<List<Rule>> select(@RequestBody Rule rule) { public Result<List<Rule>> select(Rule rule) {
return Result.success(ruleService.selects(rule)); return Result.success(ruleService.selects(rule));
} }