GrpNodeAlert.cs 733 B

12345678910111213141516171819202122232425
  1. using OASystem.API.OAMethodLib.QiYeWeChatAPI;
  2. using OASystem.Infrastructure.Repositories.Groups;
  3. namespace OASystem.API.OAMethodLib.Quartz.Business
  4. {
  5. /// <summary>
  6. /// 团组流程节点预警
  7. /// </summary>
  8. public static class GrpNodeAlert
  9. {
  10. private readonly static DelegationInfoRepository _grpDeleRep = AutofacIocManager.Instance.GetService<DelegationInfoRepository>();
  11. private static readonly IQiYeWeChatApiService _qiYeWeChatApiService = AutofacIocManager.Instance.GetService<IQiYeWeChatApiService>();
  12. /// <summary>
  13. /// 商邀流程节点预警消息推送
  14. ///
  15. /// </summary>
  16. public static async void PostMessage()
  17. {
  18. }
  19. }
  20. }