Commit cd3fb92a authored by 赵啸非's avatar 赵啸非

修改根据业务查询部门逻辑

parent df6362bc
......@@ -26,8 +26,8 @@
<if test="condition.matterName != null and condition.matterName != ''">
and a.matterName like #{condition.matterName}
</if>
<if test="condition.source!=null and condition.source!=''">
and a.source = #{condition.source}
<if test="condition.source!=null">
and a.source = #{condition.source,jdbcType=int}
</if>
</trim>
</trim>
......@@ -58,8 +58,8 @@
<if test="condition.matterName != null and condition.matterName != ''">
and a.matterName like #{condition.matterName}
</if>
<if test="condition.source!=null and condition.source!=''">
and a.source = #{condition.source}
<if test="condition.source!=null">
and a.source = #{condition.source,jdbcType=int}
</if>
</trim>
</trim>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment