liyong
5 小时以前 1ca5584d7e3200a9af65a099bd26d3593e2ba702
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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;
 
}