1.添加获取开场白接口

This commit is contained in:
2025-07-18 21:10:21 +08:00
parent 23e5fcdde6
commit d6d3647216
6 changed files with 107 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?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.yupi.springbootinit.mapper.AiTemplateMapper">
<resultMap id="BaseResultMap" type="com.yupi.springbootinit.model.entity.AiTemplate">
<!--@mbg.generated-->
<!--@Table ai_template-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="language" jdbcType="VARCHAR" property="language" />
<result column="content" jdbcType="VARCHAR" property="content" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, `language`, content
</sql>
</mapper>