1
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using BLL;
|
||||
using Model;
|
||||
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
|
||||
{
|
||||
/// <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 = CNCECHSSEWebService.RejectRectify(data);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
responeData.code = 0;
|
||||
responeData.message = ex.Message;
|
||||
}
|
||||
return responeData;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user