| | |
| | | package com.ruoyi.production.bean.dto; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | * </br> |
| | | */ |
| | | @Data |
| | | @ApiModel("生产需求产品汇总") |
| | | @Schema(name = "生产需求产品汇总") |
| | | public class ProductionPlanSummaryDto { |
| | | |
| | | /** |
| | | * 物料编码 |
| | | */ |
| | | @ApiModelProperty("物料编码") |
| | | @Schema(description = "物料编码") |
| | | private String materialCode; |
| | | |
| | | /** |
| | | * 产品名称 |
| | | */ |
| | | @ApiModelProperty("产品名称") |
| | | @Schema(description = "产品名称") |
| | | private String productName; |
| | | |
| | | /** |
| | | * 产品规格 |
| | | */ |
| | | @ApiModelProperty("产品规格") |
| | | @Schema(description = "产品规格") |
| | | private String model; |
| | | |
| | | /** |
| | | * 产品长度 |
| | | */ |
| | | @ApiModelProperty("产品长度") |
| | | @Schema(description = "产品长度") |
| | | private Integer length; |
| | | |
| | | /** |
| | | * 产品宽度 |
| | | */ |
| | | @ApiModelProperty("产品宽度") |
| | | @Schema(description = "产品宽度") |
| | | private Integer width; |
| | | |
| | | /** |
| | | * 产品高度 |
| | | */ |
| | | @ApiModelProperty("产品高度") |
| | | @Schema(description = "产品高度") |
| | | private Integer height; |
| | | |
| | | /** |
| | | * 汇总块数 |
| | | */ |
| | | @ApiModelProperty("汇总块数") |
| | | @Schema(description = "汇总块数") |
| | | private Integer quantity; |
| | | |
| | | /** |
| | | * 汇总方数 |
| | | */ |
| | | @ApiModelProperty("汇总方数") |
| | | @Schema(description = "汇总方数") |
| | | private BigDecimal volume; |
| | | |
| | | /** |
| | | * 基本单位 |
| | | */ |
| | | @ApiModelProperty("基本单位") |
| | | @Schema(description = "基本单位") |
| | | private String unit; |
| | | |
| | | } |