using ZR.Model; using ZR.Model.Dto; using ZR.Model.Models; namespace ZR.ServiceCore.Services { /// /// 邮件模板service接口 /// public interface IEmailTplService : IBaseService { PagedInfo GetList(EmailTplQueryDto parm); EmailTpl GetInfo(int Id); EmailTpl AddEmailTpl(EmailTpl parm); int UpdateEmailTpl(EmailTpl parm); } }