2024-01-22 09:17:01 +08:00
|
|
|
|
using APT.Infrastructure.Core;
|
|
|
|
|
|
using APT.BaseData.Domain.ApiModel;
|
|
|
|
|
|
using APT.BaseData.Domain.Entities.FM;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using APT.Infrastructure.Api;
|
|
|
|
|
|
namespace APT.BaseData.Domain.IServices.FM
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial interface IFMNoticeService : ICommonService
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发送短信
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="noticeType"></param>
|
|
|
|
|
|
/// <param name="DATA_ID"></param>
|
2024-06-06 16:43:07 +08:00
|
|
|
|
void SendMsg(Enums.NOTICETYPE noticeType, Guid? DATA_ID, Guid? KEY = null, T_FM_SYNC_TASK task = null);
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取会议模板ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="ORG_ID"></param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
string GetTEMPLATE_ID(Guid ORG_ID);
|
2024-01-22 09:17:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|