Exemple #1
0
        /// <summary>
        /// 取消提现
        /// </summary>
        /// <param name="Id"></param>
        /// <returns></returns>
        public JsonResult CancelPay(long Id)
        {
            string Msg = "ok";
            var    b   = true;

            if (Id > 0)
            {
                b = BillingApplication.CancelShopApplyWithDraw(Id);
                if (!b)
                {
                    Msg = "取消失败";
                }
            }
            else
            {
                b   = false;
                Msg = "数据错误";
            }
            return(Json(new Result()
            {
                success = b, msg = Msg
            }));
        }