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