zhanghl
2025-05-23 dec8951aae400e54f6ee83a8f95867dba9da8af1
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
package com.aps.core.domain.ApsPlate;
 
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serial;
import java.math.BigDecimal;
 
/**
 * ApsPlateStandardRequireBomOrderDetail对象 aps_plate_standard_require_bom_order_detail
 * 
 * @author zhl
 * @date  2025-05-06
 */
@EqualsAndHashCode(callSuper = true)
@Data
@Builder
public class ApsPlateStandardRequireBomOrderDetail extends BaseEntity
{
    @Serial
    private static final long serialVersionUID = 1L;
 
 
    private Long id;
 
    /** 需求ID */
    @Excel(name = "需求ID")
    private Long requireId;
 
    /** 需求追溯ID */
    @Excel(name = "需求追溯ID")
    private String requireTrackId;
 
    /** bom_line_id */
    @Excel(name = "bom_line_id")
    private String bomLineId;
 
    /** 料号 */
    @Excel(name = "料号")
    private String bomLineCode;
 
    /** 订单号 */
    @Excel(name = "订单号")
    private String docNo;
 
    /** 扣减前数量 */
    @Excel(name = "扣减前数量")
    private BigDecimal beforeProdAmount;
 
    /** 匹配数量 */
    @Excel(name = "匹配数量")
    private BigDecimal deductionAmount;
 
    /** 扣减后数量 */
    @Excel(name = "扣减后数量")
    private BigDecimal afterProdAmount;
 
 
    private String orgCode;
 
 
    private String batchNumber;
 
 
    private String delFlag;
 
}