|
@@ -53,10 +53,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
AND b.encoder = #{encoder}
|
|
AND b.encoder = #{encoder}
|
|
</if>
|
|
</if>
|
|
<if test="projectId != null and projectId != ''">
|
|
<if test="projectId != null and projectId != ''">
|
|
- AND b.project_id = #{projectId}
|
|
|
|
|
|
+ AND b.id = #{projectId}
|
|
</if>
|
|
</if>
|
|
<if test="educationId != null and educationId != ''">
|
|
<if test="educationId != null and educationId != ''">
|
|
- AND e.education_id = #{educationId}
|
|
|
|
|
|
+ AND e.id = #{educationId}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="id != null and id != ''">
|
|
|
|
+ AND b.id = #{id}
|
|
</if>
|
|
</if>
|
|
</select>
|
|
</select>
|
|
|
|
|