<?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.linghu.mapper.TypeMapper">
|
|
<resultMap id="BaseResultMap" type="com.linghu.model.entity.Type">
|
<id property="type_id" column="type_id" jdbcType="INTEGER"/>
|
<result property="type_name" column="type_name" jdbcType="VARCHAR"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
type_id,type_name,del_flag
|
</sql>
|
</mapper>
|