BOM
hdy
2024-11-26 f47bd7409609995c7eebb81a0b92b6e4aff0bdbf
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
package com.billion.main.bs.domain;
 
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.billion.common.annotation.Excel;
import com.billion.main.common.BaseEntity;
 
/**
 * 工艺路线对象 bs_route_info
 * 
 * @author Billion-Yi
 * @date 2024-11-23
 */
@Data
public class BsRouteInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    private Long id;
 
    /** 流程编码 */
    @Excel(name = "流程编码")
    private String routeCode;
 
    /** 流程名称 */
    @Excel(name = "流程名称")
    private String routeName;
 
    /** 产品编码 */
    @Excel(name = "产品编码")
    private String productCode;
 
    /** 产品名称 */
    @Excel(name = "产品名称")
    private String productName;
 
    /** 版本 */
    @Excel(name = "版本")
    private String version;
 
    /** 状态(字典) */
    @Excel(name = "状态(字典)")
    private String status;
 
    /** 数据来源 */
    @Excel(name = "数据来源")
    private String dataSource;
 
    /** 逻辑删除 */
    private String delFlag;
 
    /** 备注 */
    @Excel(name = "备注")
    private String remark;
 
 
}