yujian
2019-08-20 df300df7832cc3d24f1b09297998e8bee8cfd126
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java
@@ -80,7 +80,7 @@
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public void useGoodsCoupon(Long uid, Long id, Long goodId) throws UserSystemCouponException, Exception;
   public void useGoodsCoupon(Long uid, Long id, Long goodId, Integer sourceType) throws UserSystemCouponException, Exception;
   
   
   /**
@@ -90,7 +90,7 @@
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public void useOrderCoupon(Long uid, Long id, String orderNo) throws UserSystemCouponException, Exception;
   public void useOrderCoupon(Long uid, Long id, String orderNo, Integer sourceType) throws UserSystemCouponException, Exception;
   /**
    * 根据订单号获取奖励券使用进度
@@ -99,7 +99,7 @@
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public UserSystemCouponRecordVO getRewardCouponRecord(String orderNo) throws UserSystemCouponException, Exception;
   public UserSystemCouponRecordVO getRewardCouponRecord(String orderNo, Integer sourceType) throws UserSystemCouponException, Exception;
   /**
    * 是否存在奖励券
@@ -115,7 +115,7 @@
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public UserSystemCouponRecordVO getFreeCouponRecord(String orderNo) throws UserSystemCouponException, Exception;
   public UserSystemCouponRecordVO getFreeCouponRecord(String orderNo, Integer sourceType) throws UserSystemCouponException, Exception;
   /**
    * 根据订单来源查询
@@ -187,13 +187,6 @@
   public void copyLotteryPrize(Long uid, int platform, String device) throws Exception;
   
   /**
    * 领取券
    * @param uid
    * @throws Exception
    */
   public void receivedCoupon(Long uid) throws Exception;
   /**
    * 统计今日抽奖中的券数量
@@ -211,5 +204,44 @@
    * @throws Exception
    */
   public void randomRewardCoupon(int num, Long uid, String source) throws Exception;
   /**
    * 添加券
    * @param uid
    * @param couponType
    * @param source
    * @throws UserSystemCouponException
    */
   public void exchangeCoupon(Long uid, String couponType, String source,
         BigDecimal percent) throws UserSystemCouponException, Exception;
   
   /**
    * 券列表 1.6.5
    * @param start
    * @param count
    * @param uid
    * @return
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public List<UserSystemCouponVO> getCouponList(long start, int count, Long uid) throws UserSystemCouponException, Exception;
   /**
    * 赠送券生成口令
    * @param uid
    * @param id
    * @return
    * @throws UserSystemCouponException
    */
   public String giveCoupon(Long uid, Long id) throws UserSystemCouponException;
   /**
    * 赠送退回
    * @param id
    */
   public void sendBackGive(Long id);
}