You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
10 months ago
|
<?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.supervision.police.mapper.NoteCheckRecordMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.supervision.springaidemo.domain.NoteCheckRecord">
|
||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||
|
<result property="personName" column="person_name" jdbcType="VARCHAR"/>
|
||
|
<result property="noteName" column="note_name" jdbcType="VARCHAR"/>
|
||
|
<result property="type" column="type" jdbcType="VARCHAR"/>
|
||
|
<result property="metricCode" column="metric_code" jdbcType="VARCHAR"/>
|
||
|
<result property="metricName" column="metric_name" jdbcType="VARCHAR"/>
|
||
|
<result property="systemPrompt" column="system_prompt" jdbcType="VARCHAR"/>
|
||
|
<result property="prompt" column="prompt" jdbcType="VARCHAR"/>
|
||
|
<result property="result" column="result" jdbcType="VARCHAR"/>
|
||
|
<result property="originalContext" column="original_context" jdbcType="VARCHAR"/>
|
||
|
<result property="reason" column="reason" jdbcType="VARCHAR"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id
|
||
|
,person_name,note_name,
|
||
|
type,metric_code,metric_name,system_prompt,prompt
|
||
|
result,original_context,reason
|
||
|
</sql>
|
||
|
</mapper>
|