technological-brain-server/target/classes/mapper/TalentBasicMapper.xml

35 lines
1.7 KiB
XML
Raw Normal View History

2025-12-09 23:47:14 +08:00
<?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.TalentBasicMapper">
<!-- 通用查询映射结果 -->
<resultMap id="BaseResultMap" type="com.CUST.brain.dao.domain.business.TalentBasic">
<id column="id" property="id"/>
<result column="name" property="name"/>
<result column="sex" property="sex"/>
<result column="birth_date" property="birthDate"/>
<result column="unit_id" property="unitId"/>
<result column="unit_type" property="unitType"/>
<result column="highest_edu" property="highestEdu"/>
<result column="highest_school" property="highestSchool"/>
<result column="classify_grade" property="classifyGrade"/>
<result column="title" property="title"/>
<result column="region" property="region"/>
<result column="image" property="image"/>
<result column="highest_position" property="highestPosition"/>
<result column="entry_date" property="entryDate"/>
<result column="create_time" property="createTime"/>
<result column="update_time" property="updateTime"/>
<result column="create_by" property="createBy"/>
<result column="update_by" property="updateBy"/>
<result column="flag" property="flag"/>
</resultMap>
<!-- 通用查询结果列 -->
<sql id="Base_Column_List">
id, name, sex, birth_date, unit_id, unit_type, highest_edu, highest_school,
classify_grade, title, region, image, highest_position, entry_date, create_time,
update_time, create_by, update_by, flag
</sql>
</mapper>