This commit is contained in:
2025-09-22 18:14:20 +08:00
parent 4e00a3a6e9
commit 52e94288df
41 changed files with 2493 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
package com.mini.capi.biz.service;
import com.mini.capi.biz.domain.MailReceived;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 接收邮件表 服务类
* </p>
*
* @author gaoxq
* @since 2025-09-22
*/
public interface MailReceivedService extends IService<MailReceived> {
}