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