BOM
hdy
2024-11-26 f47bd7409609995c7eebb81a0b92b6e4aff0bdbf
提交 | 用户 | 时间
f47bd7 1 package com.billion.main.bs.domain;
H 2
3 import com.billion.common.annotation.Excel;
4 import com.billion.main.common.BaseEntity;
5 import lombok.Data;
6
7 import java.math.BigDecimal;
8
9 /**
10  * 基础BOM子信息对象 bs_bom_child_info
11  * 
12  * @author HDY
13  * @date 2024-11-25
14  */
15 @Data
16 public class BsBomChildInfo extends BaseEntity
17 {
18     private static final long serialVersionUID = 1L;
19
20     /** 主键id */
21     private Long id;
22
23     /** 产品编码 */
24     @Excel(name = "产品编码")
25     private String productCode;
26
27     /** 产品名称 */
28     @Excel(name = "产品名称")
29     private String productName;
30
31     /** 工位编码 */
32     @Excel(name = "工位编码")
33     private String locationCode;
34
35     /** 工位名称 */
36     @Excel(name = "工位名称")
37     private String locationName;
38
39     /** 物料编码 */
40     @Excel(name = "物料编码")
41     private String materialCode;
42
43     /** 物料名称 */
44     @Excel(name = "物料名称")
45     private String materialName;
46
47     /** 单耗 */
48     @Excel(name = "单耗")
49     private BigDecimal costQty;
50
51     /** 单位 */
52     @Excel(name = "单位")
53     private String unit;
54
55     /** BOM编码 */
56     @Excel(name = "BOM编码")
57     private String bomCode;
58
59     /** 备注 */
60     @Excel(name = "备注")
61     private String remark;
62
63     /** 逻辑删除 */
64     private String delFlag;
65
66
67 }