yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserLotteryRecordService.java
@@ -4,6 +4,8 @@
import com.yeshi.fanli.exception.user.UserLotteryRecordException;
import net.sf.json.JSONObject;
public interface UserLotteryRecordService {
   /**
@@ -12,7 +14,7 @@
    * @param type
    * @return
    */
   public Map<String, Object> getLotteryCountDaily(Long uid) throws UserLotteryRecordException, Exception;
   public JSONObject getLotteryCountDaily(Long uid) throws UserLotteryRecordException, Exception;
   /**
@@ -25,5 +27,32 @@
   public Map<String, Object> executeLotteryDaily(Long uid) throws UserLotteryRecordException, Exception;
   /**
    * 新人抽奖-次数
    * @param uid
    * @return
    * @throws UserLotteryRecordException
    * @throws Exception
    */
   public JSONObject getLotteryCountNewbies(Long uid) throws UserLotteryRecordException, Exception;
   /**
    * 新人抽奖-抽奖结果
    * @param uid
    * @return
    * @throws UserLotteryRecordException
    * @throws Exception
    */
   public Map<String, Object> executeLotteryNewbies(Long uid) throws UserLotteryRecordException, Exception;
   /**
    * 新人抽奖 -返回奖品
    * @param count
    * @param countPrize
    * @param couponType
    * @return
    */
   public String getLotteryPrizeNewbies(int count, int countPrize, String couponType);
   
}