新增 用户绑定vin信息接口

This commit is contained in:
Lemon
2023-06-08 17:04:27 +08:00
parent a02bebb74f
commit dec5dfbd8f
7 changed files with 188 additions and 0 deletions

View File

@@ -110,4 +110,11 @@
join member_wallet_info t3 on t2.member_id = t3.member_id and t2.status = '1'
where t1.vin_code = #{vinCode,jdbcType=VARCHAR}
</select>
<select id="getCarVinListByMemberId" resultType="com.jsowell.pile.vo.CarVinInfoVO">
select <include refid="Base_Column_List"/>
from car_vin_info
where member_id = #{memberId,jdbcType=VARCHAR}
and del_flag = '0'
</select>
</mapper>