| | |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - MES 生产工单工序新增/修改 Request VO") |
| | | @Data |
| | | public class MesProWorkOrderProcessSaveReqVO { |
| | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "工序投料BOM列表") |
| | | private List<BomItem> bomItems; |
| | | |
| | | @Data |
| | | public static class BomItem { |
| | | |
| | | @Schema(description = "BOM物料编号", example = "1001") |
| | | private Long itemId; |
| | | |
| | | @Schema(description = "BOM物料编码") |
| | | private String itemCode; |
| | | |
| | | @Schema(description = "BOM物料名称") |
| | | private String itemName; |
| | | |
| | | @Schema(description = "预计使用量") |
| | | private BigDecimal quantity; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | } |
| | | |
| | | } |