2025-12-16 16:56: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.klp.hrm.mapper.HrmHeadcountPlanMapper">
|
|
|
|
|
<resultMap id="BaseResultMap" type="com.klp.hrm.domain.HrmHeadcountPlan">
|
|
|
|
|
<id column="plan_id" property="planId"/>
|
2025-12-30 13:47:53 +08:00
|
|
|
<result column="dept_id" property="deptId"/>
|
|
|
|
|
<result column="post_id" property="postId"/>
|
2025-12-16 16:56:14 +08:00
|
|
|
<result column="year" property="year"/>
|
|
|
|
|
<result column="month" property="month"/>
|
|
|
|
|
<result column="budget_count" property="budgetCount"/>
|
|
|
|
|
<result column="remark" property="remark"/>
|
|
|
|
|
<result column="create_by" property="createBy"/>
|
|
|
|
|
<result column="create_time" property="createTime"/>
|
|
|
|
|
<result column="update_by" property="updateBy"/>
|
|
|
|
|
<result column="update_time" property="updateTime"/>
|
|
|
|
|
<result column="del_flag" property="delFlag"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
</mapper>
|