项目主数据
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user