|
|
@@ -43,6 +43,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<include refid="selectFsStoreCartVo"/>
|
|
|
where id = #{id}
|
|
|
</select>
|
|
|
+ <select id="selectFsStoreCartCountByUserId" resultType="java.lang.Integer">
|
|
|
+ select ifnull(sum(c.cart_num),0) from fs_store_cart_scrm c
|
|
|
+ inner join fs_store_product_scrm p on p.product_id=c.product_id
|
|
|
+ inner join fs_store_product_attr_value_scrm v on v.id=c.product_attr_value_id
|
|
|
+ where c.is_pay=0 and c.is_del=0 and c.is_buy=0 and p.is_show=1 and p.is_del=0 and c.user_id= #{userId}
|
|
|
+ </select>
|
|
|
|
|
|
<insert id="insertFsStoreCart" parameterType="FsStoreCartScrm" useGeneratedKeys="true" keyProperty="id">
|
|
|
insert into fs_store_cart_scrm
|