feat(employee): 添加员工是否吃辣字段支持
- 在 WmsEmployeeInfo 实体类中新增 isSpicyEater 字段 - 在 WmsEmployeeInfoBo 业务对象中添加 isSpicyEater 属性 - 更新 WmsEmployeeInfoMapper.xml 映射文件配置 - 在查询条件中添加 isSpicyEater 过滤逻辑 - 在 WmsEmployeeInfoVo 视图对象中添加 Excel 导出支持
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user