feat(wms): 添加员工转岗记录管理功能

- 创建员工转岗记录实体类 WmsEmployeeTransfer
- 实现员工转岗记录服务接口 IWmsEmployeeTransferService
- 添加员工转岗记录控制器 WmsEmployeeTransferController
- 创建员工转岗记录数据访问层 WmsEmployeeTransferMapper
- 实现员工转岗记录业务逻辑 WmsEmployeeTransferServiceImpl
- 定义员工转岗记录业务对象 WmsEmployeeTransferBo 和视图对象 WmsEmployeeTransferVo
- 配置员工转岗记录 MyBatis 映射文件
- 实现员工转岗记录的增删改查功能
- 添加员工转岗记录导出功能
This commit is contained in:
2026-03-18 10:06:48 +08:00
parent 3c745b8ce4
commit 8414d48dc8
8 changed files with 569 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<?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>