admin
2020-07-29 c338aa60df58bee9f4c25afedf94fe6930a119c1
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserGoodsStorageService.java
@@ -3,6 +3,7 @@
import java.util.List;
import java.util.Set;
import com.yeshi.fanli.entity.SystemEnum;
import com.yeshi.fanli.entity.bus.user.UserGoodsStorage;
import com.yeshi.fanli.exception.share.UserShareGoodsRecordException;
import com.yeshi.fanli.exception.user.UserGoodsStorageException;
@@ -91,7 +92,7 @@
    * @throws UserGoodsStorageException
    * @throws UserShareGoodsRecordException
    */
   public JSONObject shareGoods(Long uid, List<Long> listStorageID, Integer goodsType) throws UserGoodsStorageException, UserShareGoodsRecordException;
   public JSONObject shareGoods(Long uid, List<Long> listStorageID) throws UserGoodsStorageException, UserShareGoodsRecordException;
   /**
    * 添加简版商品到选品库
@@ -101,4 +102,16 @@
    */
   public void addCommonGoods(Long uid, Set<Long> ids) throws UserGoodsStorageException;
   /**
    * 创建分享
    * @param uid
    * @param listStorageID
    * @param needDrawPicture是否需要绘图
    * @return
    * @throws UserGoodsStorageException
    * @throws UserShareGoodsRecordException
    */
   public JSONObject createShareV2(Long uid, List<Long> listStorageID,boolean needDrawPicture)
         throws UserGoodsStorageException, UserShareGoodsRecordException;
}