Example #1
0
        public JsonResult BuyMarketService(int month)
        {
            Result result = new Result();

            FightGroupApplication.BuyMarketService(month, CurrentSellerManager.ShopId);
            result.success = true;
            result.msg     = "购买服务成功";
            return(Json(result));
        }