35 lines
1.7 KiB
XML
35 lines
1.7 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.PerfDeptSummaryMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.perf.domain.PerfDeptSummary" id="PerfDeptSummaryResult">
|
||
|
|
<result property="id" column="id"/>
|
||
|
|
<result property="deptId" column="dept_id"/>
|
||
|
|
<result property="period" column="period"/>
|
||
|
|
<result property="totalEmployees" column="total_employees"/>
|
||
|
|
<result property="totalCoeffSum" column="total_coeff_sum"/>
|
||
|
|
<result property="avgPerfScore" column="avg_perf_score"/>
|
||
|
|
<result property="avgPerfCoeff" column="avg_perf_coeff"/>
|
||
|
|
<result property="totalBaseSalary" column="total_base_salary"/>
|
||
|
|
<result property="totalPerfWage" column="total_perf_wage"/>
|
||
|
|
<result property="totalDeductions" column="total_deductions"/>
|
||
|
|
<result property="totalBonuses" column="total_bonuses"/>
|
||
|
|
<result property="totalOther" column="total_other"/>
|
||
|
|
<result property="totalActualSalary" column="total_actual_salary"/>
|
||
|
|
<result property="avgActualSalary" column="avg_actual_salary"/>
|
||
|
|
<result property="monthlyProduction" column="monthly_production"/>
|
||
|
|
<result property="unitPrice" column="unit_price"/>
|
||
|
|
<result property="status" column="status"/>
|
||
|
|
<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>
|