1234567891011121314151617181920 |
- package com.fjhx.email.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.fjhx.email.entity.PersonalMessageAttachment;
- import com.fjhx.email.mapper.PersonalMessageAttachmentMapper;
- import com.fjhx.email.service.IPersonalMessageAttachmentService;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 个人邮件附件 服务实现类
- * </p>
- *
- * @author zlj
- * @since 2023-04-11
- */
- @Service
- public class PersonalMessageAttachmentServiceImpl extends ServiceImpl<PersonalMessageAttachmentMapper, PersonalMessageAttachment> implements IPersonalMessageAttachmentService {
- }
|