admin
2019-11-20 8b2191df2f7d94aa299bd43dcbe97c94e5a61bbd
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java
@@ -3,6 +3,7 @@
import java.math.BigDecimal;
import java.util.List;
import com.yeshi.fanli.entity.accept.AcceptData;
import com.yeshi.fanli.entity.bus.user.UserSystemCoupon;
import com.yeshi.fanli.entity.bus.user.UserSystemCouponGiveRecord;
import com.yeshi.fanli.entity.system.SystemCoupon;
@@ -91,7 +92,7 @@
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public void useOrderCoupon(Long uid, Long id, String orderNo, Integer sourceType) throws UserSystemCouponException, Exception;
   public void useOrderCoupon(Long uid, Long id, String orderNo, Integer sourceType, AcceptData acceptData) throws UserSystemCouponException, Exception;
   /**
    * 根据订单号获取奖励券使用进度
@@ -237,7 +238,7 @@
    * @throws UserSystemCouponException
    * @throws Exception
    */
   public List<UserSystemCouponVO> getCouponList(long start, int count, Long uid) throws UserSystemCouponException, Exception;
   public List<UserSystemCouponVO> getCouponList(AcceptData acceptData, long start, int count, Long uid) throws UserSystemCouponException, Exception;
   
   /**
@@ -325,4 +326,16 @@
    */
   public List<UserSystemCoupon> getFreeCouponByType(Long uid, String type);
   /**
    * 激活免单券---订单已到账   触发激活免单券
    * @param uid
    */
   public void triggerFreeCouponActivate(Long uid, String orderNo, Integer source);
   /**
    * 退回券
    * @param giveid
    */
   public void sendBackByGiveId(Long giveid);
}