yujian
2019-08-21 7f2f5ef5637a6871f4329e464eeba97eb59e94a3
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java
@@ -205,4 +205,43 @@
    */
   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);
}