Files
klp-oa/klp-perf/src/main/resources/mapper/perf/PerfDeptConfigMapper.xml

26 lines
1.2 KiB
XML
Raw Normal View History

<?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.PerfDeptConfigMapper">
<resultMap type="com.klp.perf.domain.PerfDeptConfig" id="PerfDeptConfigResult">
<result property="id" column="id"/>
<result property="deptId" column="dept_id"/>
<result property="monthlyProductionTarget" column="monthly_production_target"/>
<result property="productionUnit" column="production_unit"/>
<result property="perfUnitPrice" column="perf_unit_price"/>
<result property="productionShifts" column="production_shifts"/>
<result property="guaranteedShifts" column="guaranteed_shifts"/>
<result property="deptCoeff" column="dept_coeff"/>
<result property="salaryMode" column="salary_mode"/>
<result property="baseDivisor" column="base_divisor"/>
<result property="month" column="month"/>
<result property="remark" column="remark"/>
<result property="createdAt" column="created_at"/>
<result property="updatedAt" column="updated_at"/>
</resultMap>
</mapper>