yujian
2019-07-29 cdd852f8e8eff7eb2e8f7c3fceaa955b9fc3f9d3
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;
   /**
    * 根据订单来源查询
@@ -205,11 +205,4 @@
    */
   public void randomRewardCoupon(int num, Long uid, String source) throws Exception;
   /**
    * 后端直接发送券
    * @param record
    * @param uid
    */
   public void randomRewardCouponForPush(Integer amount , Long uid) throws Exception;
}