| | |
| | | |
| | | import com.ruoyi.basic.dto.StorageBlobVO; |
| | | import com.ruoyi.production.pojo.ProductionOrder; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Data |
| | | @Schema(name = "ProductionOrderVo", description = "生产订单返回对象") |
| | | public class ProductionOrderVo extends ProductionOrder { |
| | | @Schema(description = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @Schema(description = "客户名称") |
| | | private String customerName; |
| | | |
| | | @Schema(description = "产品名称") |
| | | private String productName; |
| | | |
| | | @Schema(description = "规格型号") |
| | | private String model; |
| | | |
| | | @Schema(description = "工艺路线编码") |
| | | private String processRouteCode; |
| | | |
| | | @Schema(description = "产品图片") |
| | | private List<StorageBlobVO> productImages; |
| | | |
| | | @Schema(description = "bom编号") |
| | | private String bomNo; |
| | | |
| | | @Schema(description = "完成进度") |
| | | private BigDecimal completionStatus; |
| | | |
| | | @Schema(description = "是否已退料") |
| | | private Boolean returned; |
| | | } |