初始刷
This commit is contained in:
21
ZR.ServiceCore/Services/IService/IEmailTplService.cs
Normal file
21
ZR.ServiceCore/Services/IService/IEmailTplService.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using ZR.Model;
|
||||
using ZR.Model.Dto;
|
||||
using ZR.Model.Models;
|
||||
|
||||
namespace ZR.ServiceCore.Services
|
||||
{
|
||||
/// <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);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user