コード例 #1
0
        public IActionResult UpdInforZt(int Id)
        {
            int h;

            try
            {
                h = bll.UpdInforZt(Id);
            }
            catch (Exception ex)
            {
                log.Error(ex.Message);
                throw;
            }
            return(Ok(new { state = h > 0?true:false, msg = h > 0?"审核通过":"审核未通过" }));
        }