mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-04-28 11:54:20 +08:00
50 lines
1.7 KiB
XML
50 lines
1.7 KiB
XML
<?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.tencent.supersonic.chat.server.persistence.mapper.ChatConfigMapper">
|
|
|
|
<resultMap id="chaConfigDO"
|
|
type="com.tencent.supersonic.chat.server.persistence.dataobject.ChatConfigDO">
|
|
<id column="id" property="id"/>
|
|
<result column="model_id" property="modelId"/>
|
|
<result column="chat_detail_config" property="chatDetailConfig"/>
|
|
<result column="chat_agg_config" property="chatAggConfig"/>
|
|
<result column="recommended_questions" property="recommendedQuestions"/>
|
|
<result column="status" property="status"/>
|
|
<result column="llm_examples" property="llmExamples"/>
|
|
<result column="created_by" property="createdBy"/>
|
|
<result column="updated_by" property="updatedBy"/>
|
|
<result column="created_at" property="createdAt"/>
|
|
<result column="updated_at" property="updatedAt"/>
|
|
</resultMap>
|
|
|
|
<select id="search" resultMap="chaConfigDO">
|
|
select *
|
|
from s2_chat_config
|
|
<where>
|
|
<if test="id != null and id != ''">
|
|
id = #{id}
|
|
</if>
|
|
<if test="modelId != null and modelId != ''">
|
|
and model_id = #{modelId}
|
|
</if>
|
|
<if test="status != null and status != ''">
|
|
and status = #{status}
|
|
</if>
|
|
</where>
|
|
|
|
</select>
|
|
|
|
<select id="fetchConfigByModelId" resultMap="chaConfigDO">
|
|
select *
|
|
from s2_chat_config
|
|
where model_id = #{modelId}
|
|
and status != 3
|
|
order by updated_at desc
|
|
limit 1
|
|
</select>
|
|
|
|
</mapper>
|