| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Schema(description = "管理后台 - MES 生产工序 Response VO") |
| | |
| | | @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "0") |
| | | private Integer status; |
| | | |
| | | @ExcelProperty("等待时长(小时)") |
| | | @Schema(description = "等待时长(小时),报工前需倒计时等待", example = "2.00") |
| | | private BigDecimal waitDuration; |
| | | |
| | | @ExcelProperty("是否需要填写报工数量") |
| | | @Schema(description = "是否需要填写报工数量", example = "true") |
| | | private Boolean needReportQuantity; |
| | | |
| | | @ExcelProperty("备注") |
| | | @Schema(description = "备注", example = "金属板材下料") |
| | | private String remark; |