fix 标签管理

This commit is contained in:
lijiarao
2023-08-21 17:31:51 +08:00
parent cf05ffd068
commit de612316c8
7 changed files with 134 additions and 54 deletions
@@ -73,7 +73,7 @@ public class LawsTagController extends JeroController<LawsTag, ILawsTagService>
@AutoLog(value = "标签管理-列表查询")
@ApiOperation(value="标签管理-列表查询", notes="标签管理-列表查询")
@GetMapping(value = "/list")
public Result<List<LawsTag>> queryList(@Validated @RequestBody LawsArea lawsArea) {
public Result<List<LawsTag>> queryList(LawsArea lawsArea) {
List<LawsTag> list = lawsTagService.queryList(lawsArea);
return Result.OK(list);
}