update 小程序查询充电站列表

This commit is contained in:
Lemon
2023-08-18 09:27:22 +08:00
parent fe5389ce7a
commit 128a2e76e3
8 changed files with 59 additions and 3 deletions

View File

@@ -343,4 +343,15 @@
and merchant_level = '1'
and app_id = #{appId,jdbcType=VARCHAR}
</select>
<select id="getDeptIdsByAppId" resultType="java.lang.String">
select
dept_id as deptId
from
pile_merchant_info
where 1 = 1
<if test="appId != null and appId != ''">
and app_id = #{appId,jdbcType=VARCHAR}
</if>
</select>
</mapper>