管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-01-09 ff912b5a2abd0016cc8afca66cb64d0a0190364d
src/main/java/com/lf/server/controller/data/upload/UploadController.java
@@ -120,11 +120,14 @@
    @SysLog()
    @ApiOperation(value = "查询映射")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "path", value = "路径", dataType = "String", paramType = "query")
            @ApiImplicitParam(name = "path", value = "路径", dataType = "String", paramType = "query", example = "20230109010101"),
            @ApiImplicitParam(name = "dirid", value = "目录ID", dataType = "Integer", paramType = "query", example = "1")
    })
    @GetMapping(value = "/selectMappers")
    public ResponseMsg<List<TabMapperEntity>> selectMappers(String path) {
    public ResponseMsg<List<TabMapperEntity>> selectMappers(String path, Integer dirid) {
        try {
            List<TabMapperEntity> list = dataLoaderService.selectMappers(path);
            return success(list);