|
|
|
@ -44,8 +44,9 @@
|
|
|
|
|
<if test="createBy != null and createBy != ''">
|
|
|
|
|
and t.create_by like concat('%',#{createBy},'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="applyStatus != null">
|
|
|
|
|
and t.apply_status = #{applyStatus,jdbcType=INTEGER}
|
|
|
|
|
<if test="applyStatus != null and applyStatus != ''">
|
|
|
|
|
and apply_status in
|
|
|
|
|
<foreach item="item" index="index" collection="applyStatus.split(',')" open="(" separator="," close=")">'${item}'</foreach>
|
|
|
|
|
</if>
|
|
|
|
|
</trim>
|
|
|
|
|
order by t.update_time desc
|
|
|
|
|