Compare commits

..

No commits in common. "d0c51f3bc46072144bf264bc07473738c6736895" and "2cb313c1a80b5708674a59c1ef3d651eb9fdb864" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View File

@ -282,13 +282,4 @@ 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));
}
}

View File

@ -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>
</where>
order by create_time desc
</where>
</select>
<select id="selectWbProjectById" parameterType="Long" resultMap="WbProjectResult">