Пример #1
0
        public ApiResult <PagedListP <AchievementModel> > GetUserLastPlay(LastPlayReqDto model)
        {
            PlanService service = new PlanService();
            PagedListP <AchievementModel> list = service.GetUserLastPlay(model.uid, model.lType, model.playName, this.UserInfo.UserId);

            return(new ApiResult <PagedListP <AchievementModel> >()
            {
                Data = list
            });
        }
Пример #2
0
        public ApiResult <BettingRecord> GetLastPlay(LastPlayReqDto model)
        {
            PlanService service = new PlanService();

            return(service.GetLastPlay(model.lType, model.uid, model.playName, UserInfo.UserId, model.paytype ?? 1));
        }