2023-11-23 18:10:08 +08:00

22 lines
438 B
C#

using ZR.Model;
using ZR.Model.Dto;
using ZR.ServiceCore.Model;
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);
}
}