feat(employee): 添加员工离职时间字段及查询功能

- 在WmsEmployeeInfo实体类中添加离职时间字段
- 在WmsEmployeeInfoBo业务对象中添加离职时间及相关查询条件字段
- 在WmsEmployeeInfoVo视图对象中添加离职时间字段并配置日期格式
- 更新MyBatis映射文件添加离职时间字段映射
- 实现离职时间范围查询功能支持
This commit is contained in:
2026-03-24 14:48:45 +08:00
parent 890c6dd01d
commit 876bb48b1d
5 changed files with 24 additions and 0 deletions

View File

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