master
chentaisen 2024-08-22 15:22:38 +08:00
parent f18109f1a9
commit 1701efc296
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ public class RuleController {
@PostMapping("/list")
@Operation(summary = "查看规则", description = "规则")
public Result<List<Rule>> select(@RequestBody Rule rule) {
return Result.success(ruleService.select(rule));
}