集团主数据在建项目数据分析

This commit is contained in:
2026-06-10 21:07:27 +08:00
parent 855eec9965
commit ea1acf5f93
27 changed files with 2917 additions and 78 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
}
}