chenhj
6 小时以前 88162af48f9e01761b9ed2fc5ad11f8889a612db
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
package com.ruoyi.production.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.math.BigDecimal;
 
@TableName("product_structure")
@Data
public class ProductStructure {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 产品名称
     */
    private Long productId;
 
    /**
     * 工序id
     */
    private Long processId;
 
    /**
     * 单位产出需要数量
     */
    private BigDecimal unitQuantity;
 
    /**
     * 需求数量
     */
    private BigDecimal demandedQuantity;
 
    /**
     * 单位
     */
    private String unit;
 
    /**
     * 盘数量
     */
    private BigDecimal diskQuantity;
 
    /**
     * 租户ID
     */
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
 
 
}