yujian
2019-08-28 d88c167fc5973a2c15ff1539e4cdab36e4a7842c
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java
@@ -134,7 +134,7 @@
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public void insertUserCoupon(Long uid, String couponType, String source) throws UserSystemCouponException, Exception;
   public void insertUserCoupon(Long uid, String couponType, String source, BigDecimal percent) throws UserSystemCouponException, Exception;
   /**
@@ -231,7 +231,7 @@
    * @return
    * @throws UserSystemCouponException
    */
   public String giveCoupon(Long uid, Long id) throws UserSystemCouponException;
   public UserSystemCouponVO giveCoupon(Long uid, Long id) throws UserSystemCouponException;
   /**
@@ -253,4 +253,27 @@
    */
   public void updateCounponInvalid(List<UserSystemCoupon> list);
   /**
    * 兑换
    * @param uid
    * @return
    */
   public boolean getIncludeExchange(Long uid);
   /**
    * 非兑换
    * @param uid
    * @return
    */
   public boolean getIncludeNotExchange(Long uid);
   /**
    * 查询1.6.5之前的  不等于35%
    * @param uid
    * @return
    */
   public List<UserSystemCouponVO> listIncludeNotExchange(Long uid) throws Exception;
   public long countCouponOld(Long uid);
}