mh_sms/APT.BaseData.Domain/IServices/OP/IOPSmsService.cs

15 lines
351 B
C#
Raw Permalink Normal View History

2024-04-12 16:50:28 +08:00
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);
}
}