新增 运营端小程序查询站点信息接口

This commit is contained in:
Lemon
2024-07-24 13:27:39 +08:00
parent 3b600494b5
commit 425de20eea
11 changed files with 332 additions and 937 deletions

View File

@@ -597,4 +597,14 @@
where del_flag = '0'
and dept_id = #{deptId,jdbcType=VARCHAR}
</select>
<select id="getStationInfosByMerchantIds" resultMap="PileStationInfoResult">
<include refid="selectPileStationInfoVo"/>
<if test="list != null and list.size() != 0">
where merchant_id in
<foreach collection="list" item="merchantId" open="(" separator="," close=")">
#{merchantId,jdbcType=VARCHAR}
</foreach>
</if>
</select>
</mapper>