| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | public class ProductOrderDto extends ProductOrder { |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "规格") |
| | | private String specificationModel; |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "计划数量") |
| | | private Integer planQuantity; |
| | | @ApiModelProperty(value = "数量") |
| | | private Integer Quantity; |
| | | @ApiModelProperty(value = "工单号") |
| | | private String workOrderNo; |
| | | @ApiModelProperty(value = "是否报工") |
| | | private Integer reportWork; |
| | | @ApiModelProperty(value = "工单状态") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "订单完成度") |
| | | private BigDecimal completionStatus; |
| | | } |