低代码接口独立

This commit is contained in:
zhangqinbin
2024-02-01 10:28:45 +08:00
parent 2d94060b30
commit 321d1e2b43

View File

@ -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));
}
/** /**
* 项目标段信息查询数据 * 项目标段信息查询数据