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