管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-11 bd24c3ba340543fd522df9f05ecfb16cac0ec296
src/main/java/com/lf/server/controller/data/DictController.java
@@ -131,10 +131,13 @@
    @SysLog()
    @ApiOperation(value = "查询字典表结构")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "name", value = "名称", dataType = "String", paramType = "query", example = "点")
    })
    @GetMapping(value = "/selectDictTab")
    public ResponseMsg<List<TabEntity>> selectDictTab() {
    public ResponseMsg<List<TabEntity>> selectDictTab(String name) {
        try {
            List<TabEntity> list = dictService.selectDictTab();
            List<TabEntity> list = dictService.selectDictTab(name);
            return success(list);
        } catch (Exception ex) {