feat(employee): 添加员工离职状态字段

- 在WmsEmployeeInfo实体类中添加isLeave字段
- 在WmsEmployeeInfoBo业务对象中添加isLeave字段
- 在WmsEmployeeInfoVo视图对象中添加isLeave字段
- 在MyBatis映射文件中添加isLeave字段映射
- 在查询条件构造器中添加离职状态筛选逻辑
This commit is contained in:
2026-03-14 09:57:31 +08:00
parent e0b4d16701
commit 0091a46811
5 changed files with 11 additions and 0 deletions

View File

@@ -27,6 +27,7 @@
<result property="updateTime" column="update_time"/>
<result property="delFlag" column="del_flag"/>
<result property="remark" column="remark"/>
<result property="isLeave" column="is_leave"/>
</resultMap>