发送邮件配置邮件模板

This commit is contained in:
limqhz
2022-05-15 21:38:11 +08:00
parent e51efb81f4
commit cce09bf997
18 changed files with 333 additions and 29 deletions

View File

@@ -0,0 +1,16 @@
package com.quinn.mapper;
import com.quinn.pojo.Email;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author limqsh
* @since 2022-05-15
*/
public interface EmailMapper extends BaseMapper<Email> {
}

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.quinn.mapper.EmailMapper">
</mapper>