| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @Schema(description = "工序编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long processId; |
| | | |
| | | @Schema(description = "工艺参数模板编号", example = "1") |
| | | private Long paramTemplateId; |
| | | |
| | | @Schema(description = "工序编码") |
| | | private String processCode; |
| | |
| | | @Schema(description = "是否倒冲(true=报工时按BOM自动扣料;false=不自动扣料)", example = "true") |
| | | private Boolean backflushFlag; |
| | | |
| | | @Schema(description = "等待时长(小时),报工前需倒计时等待", example = "2.00") |
| | | private BigDecimal waitDuration; |
| | | |
| | | @Schema(description = "是否需要填写报工数量(false=报工数量允许为空)", example = "true") |
| | | private Boolean needReportQuantity; |
| | | |
| | | @Schema(description = "产出产品物料编号(第一个,向后兼容)", example = "100") |
| | | private Long outputItemId; |
| | | |