提交代码

This commit is contained in:
2024-12-25 15:43:38 +08:00
parent 0a2f9ea3a7
commit c0b489aaf4
79 changed files with 8536 additions and 1546 deletions
+29 -1
View File
@@ -1,4 +1,5 @@
using System;
using BLL;
using System;
using System.Web.Http;
namespace WebAPI.Controllers
@@ -76,5 +77,32 @@ namespace WebAPI.Controllers
return responeData;
}
#endregion
#region
/// <summary>
/// 将项目推送到集团
/// </summary>
/// <returns></returns>
public Model.ResponeData pushProject()
{
var responeData = new Model.ResponeData();
try
{
var code = CNCECHSSEWebService.PushProject();
if (code == "1")
{
responeData.message = "同步成功";
}
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.Message;
}
return responeData;
}
#endregion
}
}