d_sms_service/APT.BaseData.Domain/IServices/OP/IOPSmsService.cs
2024-10-28 13:45:58 +08:00

15 lines
351 B
C#

using APT.BaseData.Domain.Entities.FM;
using APT.Infrastructure.Api;
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.BaseData.Domain.IServices.OP
{
public interface IOPSmsService : ICommonService
{
bool SendNote(T_FM_NOTICE note);
bool SendMessage(string phoneNumber, string code);
}
}