Commit 59dfb218 authored by jiaorz's avatar jiaorz

修改支付宝支付方式

parent e5419a3c
......@@ -42,7 +42,7 @@
<select id="selectByZoneId" parameterType="java.util.Map" resultType="com.xxfc.platform.vehicle.entity.BranchCompany">
select * from branch_company
where zone_id = #{zoneId}
<if test="ids != null and ids > 0">
<if test="ids != null and ids.size > 0">
and id in
<foreach collection="ids" item="id" open="(" separator="," close=")">
#{id}
......
......@@ -395,7 +395,7 @@
<if test="bookType != null">
and v1.book_type = #{bookType}
</if>
<if test="companyIds != null and companyIds > 0">
<if test="companyIds != null and companyIds.size > 0">
and v1.lift_company in
<foreach collection="companyIds" item="id" open="(" separator="," close=")">
#{id}
......@@ -427,7 +427,7 @@
<if test="bookType != null">
and v1.book_type = #{bookType}
</if>
<if test="companyIds != null and companyIds > 0">
<if test="companyIds != null and companyIds.size > 0">
and (v1.lift_company in
<foreach collection="companyIds" item="id" open="(" separator="," close=")">
#{id}
......
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