22 lines
494 B
C#
22 lines
494 B
C#
using Infrastructure.Model;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.Models;
|
|
|
|
namespace DOAN.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);
|
|
}
|
|
}
|