admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/goods/CollectionGoodsV2Mapper.java
@@ -38,7 +38,7 @@
    * @return
    */
   List<CollectionGoodsV2> selectByUidOrderByCreateTimeDesc(@Param("uid") Long uid, @Param("start") long start,
         @Param("count") int count, @Param("source")Integer source);
         @Param("count") int count, @Param("source")Integer source, @Param("notBackSuVip") boolean notBackSuVip);
   /**
    * 获取收藏的数量
@@ -46,7 +46,7 @@
    * @param uid
    * @return
    */
   long selectCountByUid(@Param("uid") Long uid, @Param("source")Integer source);
   long selectCountByUid(@Param("uid") Long uid, @Param("source")Integer source, @Param("notBackSuVip") boolean notBackSuVip);
   
   /**
@@ -57,7 +57,18 @@
    * @param goodsId
    * @return
    */
   CollectionGoodsV2 selectByUidAndGoodsType(@Param("uid") Long uid, @Param("goodsId") Long goodsId,
   CollectionGoodsV2 selectByUidAndGoodsId(@Param("uid") Long uid, @Param("goodsId") Long goodsId);
   /**
    * 根据用户ID,商品ID,商品类型查询商品
    *
    * @param id
    * @param goodsType
    * @param goodsId
    * @return
    */
   CollectionGoodsV2 selectByUidAndGoodsType(@Param("uid") Long uid, @Param("goodsId") String goodsId,
         @Param("goodsType") Integer goodsType);
   /**