6 天以前 1e123568c2f561013f5636e45dc0db30b17a3517
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
package com.ruoyi.technology.bean.vo;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@Schema(description = "BOM齐套分析行结果")
public class BomKitCheckItemVo {
 
    @Schema(description = "产品规格id")
    private Long productModelId;
 
    @Excel(name = "产品名称")
    @Schema(description = "产品名称")
    private String productName;
 
    @Excel(name = "规格型号")
    @Schema(description = "规格型号")
    private String model;
 
    @Excel(name = "单位")
    @Schema(description = "单位")
    private String unit;
 
    @Excel(name = "需求量")
    @Schema(description = "按BOM展开后的需求数量")
    private BigDecimal requiredQty;
 
    @Excel(name = "可用库存")
    @Schema(description = "库存数量-锁定数量")
    private BigDecimal availableQty;
 
    @Excel(name = "缺口数量")
    @Schema(description = "需求量-可用库存,不足部分,齐套时为0")
    private BigDecimal shortageQty;
}