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.
30 lines
1.5 KiB
XML
30 lines
1.5 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.supervision.mapper.ConfigAncillaryItemMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.supervision.model.ConfigAncillaryItem">
|
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
|
<result property="type" column="type" jdbcType="VARCHAR"/>
|
|
<result property="code" column="code" jdbcType="VARCHAR"/>
|
|
<result property="itemClass" column="item_class" jdbcType="VARCHAR"/>
|
|
<result property="itemName" column="item_name" jdbcType="VARCHAR"/>
|
|
<result property="locationName" column="location_name" jdbcType="VARCHAR"/>
|
|
<result property="info" column="info" jdbcType="VARCHAR"/>
|
|
<result column="call_out_question" jdbcType="ARRAY" property="callOutQuestion"
|
|
typeHandler="com.supervision.handler.StringListTypeHandler"/>
|
|
<result property="createUserId" column="create_user_id" jdbcType="VARCHAR"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="updateUserId" column="update_user_id" jdbcType="VARCHAR"/>
|
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id
|
|
,type,item_class,item_name,location_name,
|
|
info,create_user_id,create_time,
|
|
update_user_id,update_time
|
|
</sql>
|
|
</mapper>
|