feat(wms): 新增卷材统计摘要附件功能

- 在 WmsCoilStatisticsSummary 实体中添加 attachmentInfo 字段
- 在 WmsCoilStatisticsSummaryBo 中添加 attachmentInfo 字段
- 在 WmsCoilStatisticsSummaryVo 中添加 attachmentInfo 字段
- 更新 Mapper XML 映射文件中的结果映射配置
- 修改 Vo 类继承 BaseEntity 基类
This commit is contained in:
2026-03-10 10:42:57 +08:00
parent 3f4ee0fce3
commit f5017443d5
4 changed files with 11 additions and 1 deletions

View File

@@ -42,5 +42,8 @@ public class WmsCoilStatisticsSummaryBo extends BaseEntity {
*/
private String remark;
// 新增附件字段
private String attachmentInfo;
}