This commit is contained in:
2026-06-16 23:14:04 +08:00
53 changed files with 5319 additions and 193 deletions
+29 -1
View File
@@ -1,9 +1,10 @@
using BLL;
using Model;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Linq;
using System.Web.Http;
using Newtonsoft.Json;
namespace WebAPI.Controllers
{
@@ -171,5 +172,32 @@ namespace WebAPI.Controllers
return responeData;
}
#endregion
#region
/// <summary>
/// 汇总上报集团主数据在建项目数据分析
/// </summary>
/// <returns></returns>
[HttpPost]
public ReturnData PushProjectMasterDataAnalysisData()
{
Model.ReturnData responeData = new Model.ReturnData();
string message = string.Empty;
string code = ProjectMasterDataAnalysisService.ReportProjectMasterDataAnalysis("定时任务", ref message);
if (code == "1")
{
responeData.code = 1;
}
else
{
responeData.code = 0;
}
responeData.message = message;
return responeData;
}
#endregion
}
}