CNCEC_SUBQHSE_WUHUAN/SGGL/WebAPI/Controllers/JDGL/SGManPowerController.cs

31 lines
745 B
C#
Raw Normal View History

2025-08-21 11:37:06 +08:00
using System;
using System.Web.Http;
using BLL;
namespace WebAPI.Controllers.JDGL
{
public class SGManPowerController : ApiController
{
/// <summary>
/// 人力预警
/// </summary>
/// <returns></returns>
2026-01-23 11:37:01 +08:00
public Model.ResponeData getSGPersonWarningStatistics()
2025-08-21 11:37:06 +08:00
{
var responeData = new Model.ResponeData();
try
{
2026-01-23 11:37:01 +08:00
SGManPowerService.SGPersonWarningStatistics();
responeData.data = "1";
2025-08-21 11:37:06 +08:00
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.ToString();
}
return responeData;
}
}
}