19 lines
835 B
XML
19 lines
835 B
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.CUST.brain.dao.mapper.TalentProjectInitiationMapper">
|
||
|
|
|
||
|
|
<!-- 通用查询映射结果 -->
|
||
|
|
<resultMap id="BaseResultMap" type="com.CUST.brain.dao.domain.relation.TalentProjectInitiation">
|
||
|
|
<id column="id" property="id"/>
|
||
|
|
<result column="talent_id" property="talentId"/>
|
||
|
|
<result column="project_initiation_id" property="projectInitiationId"/>
|
||
|
|
<result column="create_time" property="createTime"/>
|
||
|
|
<result column="create_by" property="createBy"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<!-- 通用查询结果列 -->
|
||
|
|
<sql id="Base_Column_List">
|
||
|
|
id, talent_id, project_initiation_id, create_time, create_by
|
||
|
|
</sql>
|
||
|
|
|
||
|
|
</mapper>
|