This commit is contained in:
2025-10-29 15:06:46 +08:00
100 changed files with 2383 additions and 604 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)
{