123456789101112131415161718 |
- package com.fjhx.service;
- import com.fjhx.base.BaseService;
- import com.fjhx.entity.EmailMessageSendContent;
- /**
- * <p>
- * 邮件发件信息 服务类
- * </p>
- *
- * @author zlj
- * @since 2023-01-13
- */
- public interface IEmailMessageSendContentService extends BaseService<EmailMessageSendContent> {
- String getContent(Long messageSendId);
- }
|