admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserShareGoodsGroupService.java
@@ -45,7 +45,7 @@
    * @param auctionId
    * @return
    */
   public UserShareGoodsGroup getNewestRecord(Long uid, Long auctionId);
   public UserShareGoodsGroup getNewestRecord(Long uid, Long auctionId, Integer goodsType);
   /**
@@ -55,7 +55,7 @@
    * @param count 订单数量
    * @throws UserShareGoodsRecordException
    */
   public void updateOrderRecord(HongBao hongBao) throws UserShareGoodsRecordException;
   public void updateOrderRecord(HongBao hongBao, int goodsType) throws UserShareGoodsRecordException;
   /**
    * 单个商品分享浏览记录
@@ -65,4 +65,13 @@
    * @throws UserShareGoodsRecordException
    */
   public void updateBrowseRecord(Long uid, Long auctionId, int count) throws UserShareGoodsRecordException;
   /**
    * 记录浏览次数
    * @param uid
    * @param id
    * @param goodsType
    * @throws UserShareGoodsRecordException
    */
   public void updateBrowseNum(Long uid, Long id, int goodsType) throws UserShareGoodsRecordException;
}