huliguo
3 天以前 11ec7ac8f4832c4274cf61a19cc35cda3de9e0e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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>