feat(domain): 为 WmsGenerateRecord 添加状态字段

- 在 WmsGenerateRecord、WmsGenerateRecordBo 和 WmsGenerateRecordVo 中添加 status 字段
- 在 WmsGenerateRecordMapper.xml 中添加 status 字段的映射
This commit is contained in:
2025-09-12 16:03:30 +08:00
parent 4e7af79f63
commit 7c9b64c74f
4 changed files with 9 additions and 1 deletions

View File

@@ -52,5 +52,9 @@ public class WmsGenerateRecordBo extends BaseEntity {
*/
private String remark;
//状态
private Integer status;
}