提交 | 用户 | 时间
|
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_child_info |
|
11 |
* |
|
12 |
* @author Billion-Yi |
|
13 |
* @date 2024-11-23 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
public class BsRouteChildInfo 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 Long stepNo; |
|
42 |
|
|
43 |
/** 逻辑删除 */ |
|
44 |
private String delFlag; |
|
45 |
|
|
46 |
/** 流程编码 */ |
|
47 |
@Excel(name = "流程编码") |
|
48 |
private String routeCode; |
|
49 |
|
|
50 |
|
|
51 |
} |