| | |
| | | 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 {
|
| | |
| | | */
|
| | | 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);
|
| | |
|
| | | }
|