|
@@ -101,10 +101,10 @@ public interface FsStoreCartScrmMapper
|
|
|
void updateIsPay(String cartIds);
|
|
void updateIsPay(String cartIds);
|
|
|
|
|
|
|
|
|
|
|
|
|
- @Select("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("select count(*) 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}")
|
|
|
Integer selectFsStoreCartCountByUserId(long userId);
|
|
Integer selectFsStoreCartCountByUserId(long userId);
|
|
|
@Select({"<script> " +
|
|
@Select({"<script> " +
|
|
|
- "select ifnull(sum(c.cart_num),0) from fs_store_cart_scrm c " +
|
|
|
|
|
|
|
+ "select count(*) from fs_store_cart_scrm c " +
|
|
|
"where c.is_pay=0 and c.is_del=0 and c.is_buy=0 " +
|
|
"where c.is_pay=0 and c.is_del=0 and c.is_buy=0 " +
|
|
|
"<if test = 'maps.userId != null '> " +
|
|
"<if test = 'maps.userId != null '> " +
|
|
|
"and c.user_id =#{maps.userId} " +
|
|
"and c.user_id =#{maps.userId} " +
|