using BLL; using Model; using Model.Customization; using Mvc.Controllers; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace WebAPI.Controllers { /// /// 督查检查整改 /// public class DCGLCheckRectifyController : ApiController { /// /// 集团驳回督查检查整改 /// /// /// [HttpPost] public Model.ResponeData RejectRectify([FromBody] DCGLCheckRectifyReject data) { var responeData = new Model.ResponeData(); try { responeData = CNCECHSSEGetWebService.RejectRectify(data); } catch (Exception ex) { responeData.code = 0; responeData.message = ex.Message; } return responeData; } } }