embeddign优化

This commit is contained in:
spllzh
2025-08-07 20:51:29 +08:00
parent bdb78caf59
commit bd20deca35
12 changed files with 336 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
<?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.rongl.mapper.ReservationMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.cst.langchain4jheima.pojo.Reservation">
<id column="id" property="id" />
<result column="name" property="name" />
<result column="gender" property="gender" />
<result column="phone" property="phone" />
<result column="province" property="province" />
<result column="datetime" property="datetime" />
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
id, name, gender, phone, province, datetime
</sql>
</mapper>