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

15 lines
351 B
C#
Raw Permalink Normal View History

2024-07-12 16:37:09 +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);
}
}