Air
2024-11-04 cb3b3801255082c53145bd752230339eae5d3e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 
<mapper namespace="com.nova.sankuai.infra.mapper.VipCardMapper">
 
    <select id="getDefaultCardByType" resultType="com.nova.sankuai.domain.entity.VipCard">
        select * from vip_card where vip_type = #{type} and default_flag = 1
    </select>
 
    <select id="getVipLowestCard" resultType="com.nova.sankuai.domain.entity.VipCard">
        select * from vip_card where vip_type = 0 order by price limit 1
    </select>
 
</mapper>