fix:十二分制-移动端接口;PC端接口补充
This commit is contained in:
@@ -61,8 +61,11 @@
|
||||
<if test="ruleId != null and ruleId != ''">
|
||||
AND a.rule_id = #{ruleId}
|
||||
</if>
|
||||
<if test="status != null and status != ''">
|
||||
AND a.status = #{status}
|
||||
<if test="statusList != null and !statusList.isEmpty()">
|
||||
AND a.status IN
|
||||
<foreach collection="statusList" item="status" separator="," open="(" close=")">
|
||||
#{status}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="type != null">
|
||||
AND a.type = #{type}
|
||||
@@ -83,6 +86,9 @@
|
||||
<if test="appealReason != null and appealReason != ''">
|
||||
AND b.appeal_reason LIKE CONCAT('%', #{appealReason}, '%')
|
||||
</if>
|
||||
<if test="isDraft != null">
|
||||
AND b.is_draft = #{isDraft}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user