Files
CNCEC_SUBQHSE_WUHUAN/SGGL/WebAPI/Controllers/PZHGL/GJSXController.cs
T

33 lines
784 B
C#
Raw Normal View History

2025-03-13 10:52:32 +08:00
using BLL;
using System;
using System.Web.Http;
namespace WebAPI.Controllers
{
/// <summary>
/// 关键事项
/// </summary>
public class GJSXController : ApiController
{
/// <summary>
/// 关键事项超期预警定时提醒发送邮箱
/// </summary>
/// <returns></returns>
[HttpPost]
public Model.ResponeData OverdueWarningSendEmail()
{
var responeData = new Model.ResponeData();
try
{
GJSXMonitorService.OverdueWarningSendEmail();
}
catch (Exception ex)
{
responeData.code = 0;
responeData.message = ex.ToString();
}
return responeData;
}
}
}