admin
2019-08-19 27920d99bc5925de113aa4f0c22dbba3dcea672f
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java
@@ -212,11 +212,37 @@
    * @param source
    * @throws UserSystemCouponException
    */
   public void exchangeCoupon(Long uid, String couponType, String source, boolean give,
   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 uid
    * @param id
    * @param couponType
    */
   public void updateGiveRecord(Long uid, Long id, String couponType);
}