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.
31 lines
1.6 KiB
XML
31 lines
1.6 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.springaidemo.mapper.VpCommonDicMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.supervision.springaidemo.domain.VpCommonDic">
|
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
|
<result property="code" column="code" jdbcType="VARCHAR"/>
|
|
<result property="nameZh" column="name_zh" jdbcType="VARCHAR"/>
|
|
<result property="nameEn" column="name_en" jdbcType="VARCHAR"/>
|
|
<result property="groupCode" column="group_code" jdbcType="VARCHAR"/>
|
|
<result property="parentId" column="parent_id" jdbcType="BIGINT"/>
|
|
<result property="priority" column="priority" jdbcType="INTEGER"/>
|
|
<result property="nameZhPath" column="name_zh_path" jdbcType="VARCHAR"/>
|
|
<result property="description" column="description" jdbcType="VARCHAR"/>
|
|
<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,code,name_zh,
|
|
name_en,group_code,parent_id,
|
|
priority,name_zh_path,description,
|
|
create_user_id,create_time,update_user_id,
|
|
update_time
|
|
</sql>
|
|
</mapper>
|