示例#1
0
        public async Task <IActionResult> GetHotpot()
        {
            var apiMsg = await ApiMessage.Wrap(async() =>
            {
                return(await contentBusiness.GetHotpotContent());
            });

            return(Json(apiMsg));
        }