|
@@ -31,16 +31,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
major_label l
|
|
|
where 1=1
|
|
|
<if test="status != null and status.size()!=0 ">
|
|
|
- AND b.status in
|
|
|
+ AND l.status in
|
|
|
<foreach collection="status" item="item" index="index" open="(" close=")" separator=",">
|
|
|
#{item}
|
|
|
</foreach>
|
|
|
</if>
|
|
|
<if test="encoder != null and encoder != ''">
|
|
|
- AND b.encoder = #{encoder}
|
|
|
+ AND l.encoder = #{encoder}
|
|
|
</if>
|
|
|
<if test="labelName != null and labelName != ''">
|
|
|
- AND b.label_name = #{labelName}
|
|
|
+ AND l.label_name = #{labelName}
|
|
|
</if>
|
|
|
|
|
|
</select>
|