Files
fad_oa/ruoyi-oa/src/main/resources/mapper/oa/EmployeeOffboardingMapper.xml
2025-02-16 18:41:56 +08:00

32 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.ruoyi.oa.mapper.EmployeeOffboardingMapper">
<resultMap type="com.ruoyi.oa.domain.EmployeeOffboarding" id="EmployeeOffboardingResult">
<result property="offboardingId" column="offboarding_id"/>
<result property="userId" column="user_id"/>
<result property="resignationDate" column="resignation_date"/>
<result property="exitInterview" column="exit_interview"/>
<result property="handoverCompleted" column="handover_completed"/>
<result property="exitReason" column="exit_reason"/>
<result property="finalSalary" column="final_salary"/>
<result property="resignationApplicationSubmitted" column="resignation_application_submitted"/>
<result property="dataBackupCompleted" column="data_backup_completed"/>
<result property="handoverArranged" column="handover_arranged"/>
<result property="salarySettled" column="salary_settled"/>
<result property="benefitsSettled" column="benefits_settled"/>
<result property="exitCertificateIssued" column="exit_certificate_issued"/>
<result property="offboardingConfirmed" column="offboarding_confirmed"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>
</resultMap>
</mapper>