| | |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Schema(description = "管理后台 - MES 生产工序新增/修改 Request VO") |
| | | @Data |
| | | public class MesProProcessSaveReqVO { |
| | |
| | | @NotNull(message = "状态不能为空") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "等待时长(小时),报工前需倒计时等待", example = "2.00") |
| | | private BigDecimal waitDuration; |
| | | |
| | | @Schema(description = "是否需要填写报工数量", example = "true") |
| | | private Boolean needReportQuantity; |
| | | |
| | | @Schema(description = "备注", example = "金属板材下料") |
| | | private String remark; |
| | | |