yujian
2020-06-29 ec60e757d358636dcac1589c44a66f3e276fe58c
fanli/src/main/java/com/yeshi/fanli/service/inter/user/cloud/UserCloudGoodsService.java
@@ -1,7 +1,6 @@
package com.yeshi.fanli.service.inter.user.cloud;
import java.util.List;
import java.util.Set;
import com.yeshi.fanli.entity.bus.user.cloud.UserCloudGoods;
import com.yeshi.fanli.exception.user.cloud.UserCloudGoodsException;
@@ -29,7 +28,7 @@
    * @param goodsType
    * @throws UserCloudGoodsException
    */
   public void addGoods(Long uid, Set<Long> set, Integer goodsType) throws UserCloudGoodsException;
   public UserCloudGoods addGoods(Long uid, Long goodsId, Integer goodsType, Long sellerId) throws UserCloudGoodsException;
   
   /**
@@ -59,5 +58,21 @@
    */
   public void updateByPrimaryKeySelective(UserCloudGoods record);
   /**
    * 查询
    * @param page
    * @param pageSize
    * @param key
    * @return
    */
   public List<UserCloudGoods> query(int page, int pageSize, String key);
   public long count(String key);
   /**
    * 选品库
    * @param uid
    */
   public void sendGoodsMQMsg(Long uid);
}