gongzuming
2024-09-19 a768dc3daa04d35fedfbe75c0a59b9b2545b85c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.mzl.flower.mapper.payment.CartMapper">
 
    <select id="getCartFlowerCount" resultType="java.lang.Integer">
        select sum(num) num
        from t_cart
        where create_by = #{userId}
        <if test="flowerId != null">
            AND flower_id = #{flowerId}
        </if>
    </select>
 
</mapper>