低代码接口独立
This commit is contained in:
@ -114,7 +114,19 @@ public class ProjectSectionController{
|
|||||||
|
|
||||||
return BaseResponse.success(projectSectionService.getPage(projectSection));
|
return BaseResponse.success(projectSectionService.getPage(projectSection));
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* 查询分页数据 低代码平台使用
|
||||||
|
*
|
||||||
|
* @param projectSection 分页信息
|
||||||
|
*
|
||||||
|
* @return 返回结果
|
||||||
|
*/
|
||||||
|
@ApiOperation("查询分页数据")
|
||||||
|
@PostMapping("/getDdmPage")
|
||||||
|
public BaseResponse<IPage<ProjectSection>> getDdmPage(@ApiParam(value = "对象数据", required = true) @RequestBody ProjectSectionVO projectSection){
|
||||||
|
|
||||||
|
return BaseResponse.success(projectSectionService.getPage(projectSection));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 项目标段信息查询数据
|
* 项目标段信息查询数据
|
||||||
|
Reference in New Issue
Block a user