feat(InProduceOrderMaterialVO): 添加机台编号和机型编号字段

- 添加 workbenchNo 字段用于存储机台编号
- 添加 modelNo 字段用于存储机型编号
- 为新增字段添加相应的注释说明
- 保持原有 children 字段结构不变
This commit is contained in:
曹鹏飞 2026-06-09 16:32:23 +08:00
parent ce02d5c602
commit 3e6ce77226
1 changed files with 10 additions and 0 deletions

View File

@ -67,5 +67,15 @@ public class InProduceOrderMaterialVO {
*/ */
private Integer inspectionStatus; private Integer inspectionStatus;
/**
* 机台编号
*/
private String workbenchNo;
/**
* 机型编号
*/
private String modelNo;
private List<InProduceOrderMaterialVO> children; private List<InProduceOrderMaterialVO> children;
} }