using BLL;
using Model;
using System;
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;
}
}
}