26 lines
1.1 KiB
XML
26 lines
1.1 KiB
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.klp.perf.mapper.PerfEmployeeInfoMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.perf.domain.PerfEmployeeInfo" id="PerfEmployeeInfoResult">
|
||
|
|
<result property="id" column="id"/>
|
||
|
|
<result property="employeeId" column="employee_id"/>
|
||
|
|
<result property="deptId" column="dept_id"/>
|
||
|
|
<result property="positionName" column="position_name"/>
|
||
|
|
<result property="baseSalary" column="base_salary"/>
|
||
|
|
<result property="perfBase" column="perf_base"/>
|
||
|
|
<result property="posCoeffDefault" column="pos_coeff_default"/>
|
||
|
|
<result property="isActive" column="is_active"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|