admin
2023-04-12 651f2856e9ae10aacbfb8327d967aacbb6d58333
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, Integer goodsType);
   public UserShareGoodsGroup getNewestRecord(Long uid, String auctionId, Integer goodsType);
   /**
@@ -64,7 +64,7 @@
    * @param count
    * @throws UserShareGoodsRecordException
    */
   public void updateBrowseRecord(Long uid, Long auctionId, int count) throws UserShareGoodsRecordException;
   public void updateBrowseRecord(Long uid, String auctionId, int count) throws UserShareGoodsRecordException;
   /**
    * 记录浏览次数
@@ -73,5 +73,5 @@
    * @param goodsType
    * @throws UserShareGoodsRecordException
    */
   public void updateBrowseNum(Long uid, Long id, int goodsType) throws UserShareGoodsRecordException;
   public void updateBrowseNum(Long uid, String id, int goodsType) throws UserShareGoodsRecordException;
}