| 12345678910111213141516171819202122232425 |
- using OASystem.API.OAMethodLib.QiYeWeChatAPI;
- using OASystem.Infrastructure.Repositories.Groups;
- namespace OASystem.API.OAMethodLib.Quartz.Business
- {
- /// <summary>
- /// 团组流程节点预警
- /// </summary>
- public static class GrpNodeAlert
- {
- private readonly static DelegationInfoRepository _grpDeleRep = AutofacIocManager.Instance.GetService<DelegationInfoRepository>();
- private static readonly IQiYeWeChatApiService _qiYeWeChatApiService = AutofacIocManager.Instance.GetService<IQiYeWeChatApiService>();
- /// <summary>
- /// 商邀流程节点预警消息推送
- ///
- /// </summary>
- public static async void PostMessage()
- {
- }
- }
- }
|