35 lines
874 B
C#
35 lines
874 B
C#
using BLL;
|
|
using Model;
|
|
using System;
|
|
using System.Web.Http;
|
|
|
|
namespace WebAPI.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 督查检查整改
|
|
/// </summary>
|
|
public class DCGLCheckRectifyController : ApiController
|
|
{
|
|
/// <summary>
|
|
/// 集团驳回督查检查整改
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
/// <returns></returns>
|
|
[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;
|
|
}
|
|
}
|
|
}
|