src/main/java/com/lf/server/controller/data/upload/QueryController.java
@@ -263,4 +263,20 @@ return fail(ex.getMessage(), null); } } @SysLog() @ApiOperation(value = "根据源数据ID查询") @ApiImplicitParams({ @ApiImplicitParam(name = "id", value = "ID", dataType = "int", paramType = "query", example = "1") }) @GetMapping(value = "/selectMetaById") public ResponseMsg<MetaEntity> selectMetaById(int id) { try { MetaEntity entity = metaService.selectById(id); return success(entity); } catch (Exception ex) { return fail(ex.getMessage(), null); } } }