20230228@xingjs@提交官网一张图相关内容接口(专题展示和工程展示相关模块内容)
| | |
| | | @SysLog() |
| | | @ApiOperation(value = "项目信息查询") |
| | | @GetMapping("/selectProjectInfo") |
| | | public ResponseMsg<Object> selectProjectInfo(@RequestParam("projectName") String projectName) { |
| | | List<String> resList = aMapOfPipelineService.selectProjectInfo(projectName); |
| | | public ResponseMsg<Object> selectProjectInfo(@RequestParam("projectCode") String projectCode) { |
| | | List<String> resList = aMapOfPipelineService.selectProjectInfo(projectCode); |
| | | return success(resList); |
| | | } |
| | | /** |
| | |
| | | * @param projectName 项目名称 |
| | | * @return {@link List}<{@link String}> |
| | | */ |
| | | public List<String> selectProjectInfo(String projectName); |
| | | public List<String> selectProjectInfo(String projectCode); |
| | | |
| | | /** |
| | | * 选择项目文件列表 |
| | |
| | | * @return {@link List}<{@link String}> |
| | | */ |
| | | @Override |
| | | public List<String> selectProjectInfo(String projectName) { |
| | | return aMapOfPipelineMapper.selectProjectInfo(projectName); |
| | | public List<String> selectProjectInfo(String projectCode) { |
| | | return aMapOfPipelineMapper.selectProjectInfo(projectCode); |
| | | } |
| | | |
| | | /** |
| | |
| | | |
| | | <!-- 查询项目信息 select PROJNAME,* from bs.bs_project WHERE PROJNAME LIKE '${projectName}%' AND PROJNAME IS NOT NULL ; --> |
| | | <select id="selectProjectInfo" resultType="java.util.Map"> |
| | | select PROJNAME,* from bs.bs_project WHERE PROJNAME LIKE '${projectName}%' AND PROJNAME IS NOT NULL ; |
| | | select PROJNAME,* from bs.bs_project WHERE dirid LIKE '${projectCode}%' AND PROJNAME IS NOT NULL ; |
| | | </select> |
| | | |
| | | <select id="selectProjectInfo1" resultType="java.util.Map"> |