项目主数据

This commit is contained in:
geh
2026-06-11 09:52:30 +08:00
parent eb3003bc21
commit 716c838be0
29 changed files with 2957 additions and 212 deletions
@@ -3,6 +3,7 @@ using Newtonsoft.Json.Linq;
using System;
using System.Linq;
using System.Web.Http;
using Model;
using Newtonsoft.Json;
using WebAPI.Filter;
@@ -234,6 +235,32 @@ namespace WebAPI.Controllers
return responeData;
}
#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
}
}