关键事项、邮件管理、任务管理

This commit is contained in:
2025-03-13 10:52:32 +08:00
parent 7a242ed776
commit c73bb1124d
99 changed files with 9738 additions and 3791 deletions
@@ -0,0 +1,33 @@
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;
}
}
}