update 预约充电记录

This commit is contained in:
Guoqs
2024-08-05 15:46:59 +08:00
parent 828d756363
commit 58d7974d3c
11 changed files with 111 additions and 24 deletions

View File

@@ -92,4 +92,13 @@
#{id}
</foreach>
</delete>
<select id="selectMemberList" resultType="com.jsowell.pile.vo.uniapp.customer.MemberVO">
select
t1.member_id as memberId,
t2.open_id as openId
from pile_member_relation t1
left join member_basic_info t2 on t2.member_id = t1.member_id and t2.del_flag = '0'
where t1.pile_sn = #{pileSn,jdbcType=VARCHAR}
</select>
</mapper>