29 lines
1.3 KiB
XML
29 lines
1.3 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.mapper.WmsEmployeeTransferMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsEmployeeTransfer" id="WmsEmployeeTransferResult">
|
||
|
|
<result property="transferId" column="transfer_id"/>
|
||
|
|
<result property="infoId" column="info_id"/>
|
||
|
|
<result property="oldDept" column="old_dept"/>
|
||
|
|
<result property="oldJobType" column="old_job_type"/>
|
||
|
|
<result property="newDept" column="new_dept"/>
|
||
|
|
<result property="newJobType" column="new_job_type"/>
|
||
|
|
<result property="transferTime" column="transfer_time"/>
|
||
|
|
<result property="transferReason" column="transfer_reason"/>
|
||
|
|
<result property="transferHandler" column="transfer_handler"/>
|
||
|
|
<result property="approvalStatus" column="approval_status"/>
|
||
|
|
<result property="attachment" column="attachment"/>
|
||
|
|
<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="delFlag" column="del_flag"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|