yujian
2019-04-29 9a24f2802a3d6fe3e82c05e52f2880d65ad04dcf
fanli/src/main/java/com/yeshi/fanli/service/inter/goods/ShareGoodsService.java
@@ -45,16 +45,37 @@
   public UserShareGoodsHistory getShareGoodsHistoryDetail(Long uid, Long auctionId) throws ShareGoodsException;
   /**
    * 获取分享记录
    *
    * @param uid
    * @param auctionId
    * @return
    */
   public UserShareGoodsHistory getShareGoodsHistory(Long uid, Long auctionId);
   /**
    * 获取商品的分享转链链接
    * 
    * @param uid
    * @param auctionId
    * @param relationId -渠道ID
    * @param relationId
    *            -渠道ID
    * @return
    * @throws ShareGoodsException
    */
   public TaoBaoLink getTaoBaoLinkForShare(Long uid, Long auctionId,String relationId) throws ShareGoodsException;
   public TaoBaoLink getTaoBaoLinkForShare(Long uid, Long auctionId, String relationId) throws ShareGoodsException;
   /**
    * 获取商品的分享转链链接
    * @param uid
    * @param auctionId
    * @param relationId
    * @param pid
    * @return
    * @throws ShareGoodsException
    */
   public TaoBaoLink getTaoBaoLinkForShare(Long uid, Long auctionId, String relationId,String pid) throws ShareGoodsException;
   /**
    * 获取商品的购买转链链接
@@ -78,4 +99,15 @@
   public TaoBaoLink getTaoBaoLinkForBuyWithSpecial(Long uid, String specialId, Long auctionId)
         throws ShareGoodsException;
   /**
    * 通过PID设置链接
    *
    * @param uid
    * @param auctionId
    * @param pid
    * @return
    * @throws ShareGoodsException
    */
   public TaoBaoLink getTaoBaoLink(Long uid, Long auctionId, String pid) throws ShareGoodsException;
}