BOM
hdy
2024-11-26 f47bd7409609995c7eebb81a0b92b6e4aff0bdbf
提交 | 用户 | 时间
849473 1 package com.billion.main.bs.domain;
A 2
3 import lombok.Data;
4 import org.apache.commons.lang3.builder.ToStringBuilder;
5 import org.apache.commons.lang3.builder.ToStringStyle;
6 import com.billion.common.annotation.Excel;
7 import com.billion.main.common.BaseEntity;
8
9 /**
10  * 工艺路线对象 bs_route_info
11  * 
12  * @author Billion-Yi
13  * @date 2024-11-23
14  */
15 @Data
16 public class BsRouteInfo 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 routeCode;
26
27     /** 流程名称 */
28     @Excel(name = "流程名称")
29     private String routeName;
30
31     /** 产品编码 */
32     @Excel(name = "产品编码")
33     private String productCode;
34
35     /** 产品名称 */
36     @Excel(name = "产品名称")
37     private String productName;
38
39     /** 版本 */
40     @Excel(name = "版本")
41     private String version;
42
43     /** 状态(字典) */
44     @Excel(name = "状态(字典)")
45     private String status;
46
47     /** 数据来源 */
48     @Excel(name = "数据来源")
49     private String dataSource;
50
51     /** 逻辑删除 */
52     private String delFlag;
53
54     /** 备注 */
55     @Excel(name = "备注")
56     private String remark;
57
58
59 }