Compare commits
2 Commits
2cb313c1a8
...
d0c51f3bc4
Author | SHA1 | Date |
---|---|---|
lc | d0c51f3bc4 | |
lc | c5f33d4255 |
|
@ -282,4 +282,13 @@ public class WxLoginController extends BaseController {
|
|||
List<WbProject> list = iWbProjectService.selectWbProjectList(wbProject);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 小程序根据项目id获取项目管理详细信息
|
||||
*/
|
||||
@RequestMapping(value = "/infoProjectId")
|
||||
public AjaxResult getInfo(@RequestParam Long projectId)
|
||||
{
|
||||
return success(iWbProjectService.selectWbProjectById(projectId));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,8 +26,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="projectName != null and projectName != ''"> and project_name like concat('%', #{projectName}, '%')</if>
|
||||
<if test="projectOverview != null and projectOverview != ''"> and project_overview = #{projectOverview}</if>
|
||||
<if test="fileUrl != null and fileUrl != ''"> and file_url = #{fileUrl}</if>
|
||||
order by create_time desc
|
||||
</where>
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
<select id="selectWbProjectById" parameterType="Long" resultMap="WbProjectResult">
|
||||
|
|
Loading…
Reference in New Issue