22 lines
447 B
C#
22 lines
447 B
C#
using ZR.Model;
|
|
using ZR.Model.Dto;
|
|
using ZR.ServiceCore.Model;
|
|
|
|
namespace ZR.Service.System.ISystemService
|
|
{
|
|
/// <summary>
|
|
/// 邮件模板service接口
|
|
/// </summary>
|
|
public interface IEmailTplService : IBaseService<EmailTpl>
|
|
{
|
|
PagedInfo<EmailTplDto> GetList(EmailTplQueryDto parm);
|
|
|
|
EmailTpl GetInfo(int Id);
|
|
|
|
EmailTpl AddEmailTpl(EmailTpl parm);
|
|
|
|
int UpdateEmailTpl(EmailTpl parm);
|
|
|
|
}
|
|
}
|