“djh”
3 天以前 d7471cff04678b91271bdc566bcbddf2f4ab04b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.gkhy.exam.system.mapper.InformationPlatformMapper">
 
    <resultMap type="com.gkhy.exam.system.domain.InformationPlatform" id="InformationPlatformResult">
        <id     property="id"     column="id"     />
        <result property="companyId"  column="company_id"   />
        <result property="platformName"   column="platform_name"   />
        <result property="buildDate"    column="build_date"    />
        <result property="delFlag"    column="del_flag"    />
        <result property="createBy"   column="create_by"   />
        <result property="createTime" column="create_time" />
        <result property="updateBy"   column="update_by"   />
        <result property="updateTime" column="update_time" />
    </resultMap>
 
 
</mapper>