| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | |
| | | @Schema(description = "报工主信息") |
| | | private ProductionProductMain reportMain; |
| | | |
| | | @Schema(description = "工时") |
| | | private BigDecimal workHour; |
| | | |
| | | @Schema(description = "报工产出明细") |
| | | private List<ProductionProductOutput> reportOutputList; |
| | | |
| | |
| | | @Schema(description = "报工主信息") |
| | | private ProductionProductMain reportMain; |
| | | |
| | | @Schema(description = "工时") |
| | | private BigDecimal workHour; |
| | | |
| | | @Schema(description = "质检主信息") |
| | | private QualityInspect inspect; |
| | | |