Commit 7ef90058 by zhiwj

必传enterpriseId修改

parent 43a2a282
......@@ -237,7 +237,10 @@
select
<include refid="Base_Column_List" />
from tab_clerk
where enterprise_id = #{enterpriseId}
<where>
<if test="enterpriseId != null ">
and enterprise_id = #{enterpriseId}
</if>
<if test="null != storeClerkIds and storeClerkIds.size() &gt; 0">
and store_info_id in
<foreach close=")" collection="storeClerkIds" index="index" item="item" open="(" separator=",">
......@@ -253,6 +256,7 @@
<if test="status != null ">
and status = #{status}
</if>
</where>
</select>
<select id="getTotalClerk" resultType="int">
select
......
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