Commit bded69d7 by zhiwj

支持enterprise=null

parent a1d05f46
......@@ -351,8 +351,11 @@
select
<include refid="Base_Column_List" />
from tab_clerk
where enterprise_id = #{enterpriseId}
and store_info_id = #{storeInfoId}
where
store_info_id = #{storeInfoId}
<if test="enterprise_id != null ">
and enterprise_id = #{enterprise_id}
</if>
and position_id = 1
limit 1
</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