督查检查驳回

This commit is contained in:
geh
2026-03-26 11:05:11 +08:00
parent 03e585144c
commit 9e9100749a
8 changed files with 115 additions and 6 deletions
@@ -0,0 +1,40 @@
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
{
/// <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;
}
}
}
+1
View File
@@ -203,6 +203,7 @@
<Compile Include="Controllers\DoorProject\DoorServerController.cs" />
<Compile Include="Controllers\HJGL\PersonEntranceController.cs" />
<Compile Include="Controllers\HSSE\ConstructionRiskController.cs" />
<Compile Include="Controllers\HSSE\DCGLCheckRectifyController.cs" />
<Compile Include="Controllers\HSSE\GeneralEquipmentQualityController.cs" />
<Compile Include="Controllers\HSSE\GoodsManageController.cs" />
<Compile Include="Controllers\HSSE\HazardRealTimeController.cs" />