| | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - MES 工艺路线工序 Response VO") |
| | | @Data |
| | |
| | | @Schema(description = "是否倒冲(true=报工时按BOM自动扣料;false=不自动扣料)", example = "true") |
| | | private Boolean backflushFlag; |
| | | |
| | | @Schema(description = "产出产品物料编号", example = "100") |
| | | private Long outputItemId; |
| | | |
| | | @Schema(description = "产出产品物料编码") |
| | | private String outputItemCode; |
| | | |
| | | @Schema(description = "产出产品物料名称") |
| | | private String outputItemName; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "工序投料BOM列表") |
| | | private List<MesProProcessBomItemVO> bomItems; |
| | | |
| | | @Schema(description = "创建时间") |
| | | private LocalDateTime createTime; |
| | | |