初始刷
This commit is contained in:
21
ZR.ServiceCore/Services/IService/IEmailLogService.cs
Normal file
21
ZR.ServiceCore/Services/IService/IEmailLogService.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Infrastructure.Model;
|
||||
using ZR.Model;
|
||||
using ZR.Model.Dto;
|
||||
using ZR.Model.Models;
|
||||
|
||||
namespace ZR.ServiceCore.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// 邮件发送记录service接口
|
||||
/// </summary>
|
||||
public interface IEmailLogService : IBaseService<EmailLog>
|
||||
{
|
||||
PagedInfo<EmailLogDto> GetList(EmailLogQueryDto parm);
|
||||
|
||||
EmailLog GetInfo(long Id);
|
||||
|
||||
EmailLog AddEmailLog(SendEmailDto parm, string result);
|
||||
|
||||
int UpdateEmailLog(EmailLog parm);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user