Пример #1
0
        public async Task <JsonResult> GetCommunityList(QueryCommunityModel pageBase)
        {
            if (loginDto.CurrentId == 9)
            {
                pageBase.AdminId = null;
            }

            var list = await _communityService.GetList(pageBase);

            return(Jsons(list));
        }