Example #1
0
        public string DeleteById_Admin(int Id)
        {
            Result_Msg res = new Result_Msg();

            if (base.CurrentManager != null)
            {
                IJobsService jobsService = ServiceHelper.Create <IJobsService>();
                res = jobsService.DeleteById_Admin(Id);
            }
            else
            {
                res.IsSuccess = false;
                res.Message   = "审核失败,失败原因:获取登录状态失败!";
            }
            return(Newtonsoft.Json.JsonConvert.SerializeObject(res));
        }