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

@@ -136,6 +136,9 @@ public class WmsEmployeeInfoBo extends BaseEntity {
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date leaveEndTime;
// 是否吃辣0=否1=是
private Integer isSpicyEater;
// 是否转正0=未转正1=已转正
private Integer isRegular;