feat(employee): 添加员工是否吃辣字段支持

- 在 WmsEmployeeInfo 实体类中新增 isSpicyEater 字段
- 在 WmsEmployeeInfoBo 业务对象中添加 isSpicyEater 属性
- 更新 WmsEmployeeInfoMapper.xml 映射文件配置
- 在查询条件中添加 isSpicyEater 过滤逻辑
- 在 WmsEmployeeInfoVo 视图对象中添加 Excel 导出支持
This commit is contained in:
2026-06-18 10:39:00 +08:00
parent 41716b3430
commit 2fb5a64124
5 changed files with 13 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="isSpicyEater" column="is_spicy_eater"/>
<result property="isLeave" column="is_leave"/>
<result property="leaveTime" column="leave_time"/>
<result property="isRegular" column="is_regular"/>