chenlu
2024-01-26 66dcbf3fcfc3bb27a5619626d24ce19f50a4b79f
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
package com.example.erp.entity.pp;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.time.LocalDate;
@Data
public class BaseBom {
    @TableId(type = IdType.AUTO)
    //自增id
    private Integer id;
    //产品大类编号
    private String productCategoriesId;
    //大类名称
    private String productCategories;
    //基数
    private Integer base;
    //物料编码
    private String materialId;
    //物料名称
    private String materialName;
    //主单位
    private String mainUnit;
    //换算率
    private String conversion;
    //副单位
    private String deputyUnit;
    //数量
    private String number;
    //工序
    private String process;
    //产地
    private String producingArea;
    //审核状态
    private Integer reviewStatus;
    //创建人
    private String founder;
    //审核人
    private String reviewer;
    //使用状态
    private Integer state;
    //建立时间
    private LocalDate createTime;
    //修改时间
    private LocalDate updateTime;
 
}