feat(WmsMealReport): 添加堂食和打包人员名单字段

- 在WmsMealReport实体类中新增dineInPeopleList和takeoutPeopleList字段
- 在WmsMealReportBo业务对象中添加对应的人员名单属性
- 更新WmsMealReportMapper.xml映射文件,添加新的结果映射
- 在WmsMealReportVo视图对象中增加人员名单相关字段
This commit is contained in:
2026-01-21 13:57:10 +08:00
parent 9d484f0a8a
commit 93f3708f64
4 changed files with 17 additions and 0 deletions

View File

@@ -73,4 +73,8 @@ public class WmsMealReportBo extends BaseEntity {
private String remark;
// 堂食人名单
private String dineInPeopleList;
// 打包人名单
private String takeoutPeopleList;
}