From b90c2f738f64df608ae9f9277c7a3ab35c46498a Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 16 八月 2019 16:27:32 +0800 Subject: [PATCH] 金币获得事件上传 --- fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java index 6eeb35d..f03b726 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserSystemCouponService.java @@ -205,4 +205,36 @@ */ 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; + + + /** + * 璧犻�佸埜鐢熸垚鍙d护 + * @param uid + * @param id + * @return + * @throws UserSystemCouponException + */ + public String giveCoupon(Long uid, Long id) throws UserSystemCouponException; + } -- Gitblit v1.8.0