feat(employee): 添加员工转正状态管理功能

- 在WmsEmployeeInfo实体类中新增isRegular和regularTime字段
- 在WmsEmployeeInfoBo业务对象中添加转正相关属性定义
- 配置MyBatis映射文件中的转正状态字段映射关系
- 实现员工服务层中的转正状态查询条件过滤逻辑
- 在WmsEmployeeInfoVo视图对象中添加转正状态返回字段
This commit is contained in:
2026-03-18 10:56:27 +08:00
parent 70097733f6
commit 7dcb779412
5 changed files with 24 additions and 0 deletions

View File

@@ -28,6 +28,8 @@
<result property="delFlag" column="del_flag"/>
<result property="remark" column="remark"/>
<result property="isLeave" column="is_leave"/>
<result property="isRegular" column="is_regular"/>
<result property="regularTime" column="regular_time"/>
</resultMap>