29 lines
823 B
C#
29 lines
823 B
C#
|
|
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>
|
|||
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|