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
package com.ruoyi.production.bean.vo;
 
import com.ruoyi.production.pojo.ProductionOrderPick;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.math.BigDecimal;
import java.util.List;
 
@EqualsAndHashCode(callSuper = true)
@Data
public class ProductionOrderPickVo extends ProductionOrderPick {
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "库存数量")
    private BigDecimal stockQuantity;
 
    @Schema(description = "领用数量")
    private BigDecimal pickQuantity;
 
    @Schema(description = "净领料数量(领料+补料-退料)")
    private BigDecimal effectiveQuantity;
 
    @Schema(description = "是否为已领料记录:false 表示来自BOM的可领用物料建议")
    private Boolean picked;
 
    @Schema(description = "产品名称")
    private String productName;
 
    @Schema(description = "规格型号")
    private String model;
 
    @Schema(description = "工单编号")
    private String workOrderNo;
 
    @Schema(description = "批号")
    private List<String> batchNoList;
}