package com.ruoyi.productionPlan.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* <br>
|
* 销售生产需求 - 产品类型汇总DTO
|
* </br>
|
*
|
* @author deslrey
|
* @version 1.0
|
* @since 2026/03/11 10:24
|
*/
|
@Data
|
@ApiModel("生产需求产品汇总")
|
public class ProductionPlanSummaryDto {
|
|
/**
|
* 物料编码
|
*/
|
@ApiModelProperty("物料编码")
|
private String materialCode;
|
|
/**
|
* 产品名称
|
*/
|
@ApiModelProperty("产品名称")
|
private String productName;
|
|
/**
|
* 产品规格
|
*/
|
@ApiModelProperty("产品规格")
|
private String productSpec;
|
|
/**
|
* 产品长度
|
*/
|
@ApiModelProperty("产品长度")
|
private Integer length;
|
|
/**
|
* 产品宽度
|
*/
|
@ApiModelProperty("产品宽度")
|
private Integer width;
|
|
/**
|
* 产品高度
|
*/
|
@ApiModelProperty("产品高度")
|
private Integer height;
|
|
/**
|
* 汇总块数
|
*/
|
@ApiModelProperty("汇总块数")
|
private Integer quantity;
|
|
/**
|
* 汇总方数
|
*/
|
@ApiModelProperty("汇总方数")
|
private BigDecimal volume;
|
|
}
|