yujian
2019-07-23 a39422f2a8ce45dd6cf65701ed5f9e65391c46c1
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java
@@ -35,7 +35,7 @@
    * @param uid
    * @return
    */
   public List<UserSystemCouponVO> getUserCouponVOList(long start, int count, Long uid) throws UserSystemCouponException, Exception;
   public List<UserSystemCouponVO> getUserCouponVOList(long start, int count, Long uid, boolean changeJump ) 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 goodsType) throws UserSystemCouponException, Exception;
   /**
    * 根据订单号获取奖励券使用进度
@@ -185,5 +185,24 @@
    * @throws Exception
    */
   public void copyLotteryPrize(Long uid, int platform, String device) throws Exception;
   
   /**
    * 统计今日抽奖中的券数量
    * @param uid
    * @param source
    * @return
    */
   public int countTodatyUserCouponBySource(Long uid, String source);
   /**
    * 随机生成奖励券
    * @param num
    * @param uid
    * @param source
    * @throws Exception
    */
   public void randomRewardCoupon(int num, Long uid, String source) throws Exception;
}