IEmailMessageSendContentService.java 347 B

123456789101112131415161718
  1. package com.fjhx.service;
  2. import com.fjhx.base.BaseService;
  3. import com.fjhx.entity.EmailMessageSendContent;
  4. /**
  5. * <p>
  6. * 邮件发件信息 服务类
  7. * </p>
  8. *
  9. * @author zlj
  10. * @since 2023-01-13
  11. */
  12. public interface IEmailMessageSendContentService extends BaseService<EmailMessageSendContent> {
  13. String getContent(Long messageSendId);
  14. }