This commit is contained in:
geh
2025-10-28 17:20:48 +08:00
parent a630793f5b
commit b0898907eb
7 changed files with 538 additions and 45 deletions
@@ -11,13 +11,13 @@ namespace WebAPI.Controllers.JDGL
/// 人力预警
/// </summary>
/// <returns></returns>
[HttpPost]
public Model.ResponeData ManPowerWarning()
public Model.ResponeData getManPowerWarning(string userId)
{
var responeData = new Model.ResponeData();
try
{
responeData = SGManPowerService.CheckAndSendPersonWarning();
var list = SGManPowerService.CheckAndSendPersonWarning(userId);
responeData.data = list;
}
catch (Exception ex)
{