| 1234567891011121314151617 |
- package jnpf.service;
- import jnpf.base.service.SuperService;
- import jnpf.entity.EmailSendEntity;
- /**
- * 邮件发送
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2019年9月26日 上午9:18
- */
- public interface EmailSendService extends SuperService<EmailSendEntity> {
- }
|