admin
2018-12-25 4cb15e222cd7d099d533ccbeb7f9a8cd99bf180c
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserGoodsStorageService.java
@@ -4,10 +4,12 @@
import java.util.Set;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.entity.bus.user.UserGoodsStorage;
import com.yeshi.fanli.exception.share.UserShareGoodsRecordException;
import com.yeshi.fanli.exception.user.UserGoodsStorageException;
public interface UserGoodsStorageService {
@@ -85,4 +87,19 @@
    */
   public boolean isExistStorage(Long uid, Long auctionId);
   /**
    * 选品库分享商品
    * @param uid
    * @param listStorageID
    * @throws UserGoodsStorageException
    * @throws UserShareGoodsRecordException
    */
   public JSONObject shareGoods(Long uid, List<Long> listStorageID) throws UserGoodsStorageException, UserShareGoodsRecordException;
   /**
    * 更新商品状态为已分享
    * @param shareId 分享
    */
   public void updateShareState(Long shareId);
}