Пример #1
0
        public object CancelActive(int id, string mremark = "小程序下架操作")
        {
            Result result;

            try
            {
                FightGroupApplication.XcxCancelActive(id);
                result = new Result {
                    success = true, msg = "操作成功", status = 1
                };
            }
            catch (Exception)
            {
                result = new Result {
                    success = false, msg = "操作失败", status = -1
                };
            }
            return(Json(result));
        }