管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-25 ec17edbc0d74fc08dadbe723278ff8f07841dc30
src/main/java/com/lf/server/controller/all/FmeItController.java
@@ -26,7 +26,7 @@
 * FME接口控制器
 * @author WWW
 */
@Api(tags = "运维管理\\FME接口调用")
@Api(tags = "系统对接\\FME")
@RestController
@RequestMapping("/fmeIt")
public class FmeItController extends BaseController {
@@ -258,4 +258,20 @@
            return fail(ex.getMessage(), null);
        }
    }
    @SysLog()
    @ApiOperation(value = "查询项目")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "name", value = "名称", dataType = "String", paramType = "query", example = "西")
    })
    @GetMapping(value = "/selectProject")
    public ResponseMsg<List<DirEntity>> selectProject(String name) {
        try {
            List<DirEntity> list = dirService.selectProject(name);
            return success(list);
        } catch (Exception ex) {
            return fail(ex.getMessage(), null);
        }
    }
}