提交 | 用户 | 时间
|
dea0a3
|
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_location_info |
|
11 |
* |
|
12 |
* @author Billion-Yi |
|
13 |
* @date 2024-11-26 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
public class BsLocationInfo 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 locationCode; |
|
26 |
|
|
27 |
/** 工位名称 */ |
|
28 |
@Excel(name = "工位名称") |
|
29 |
private String locationName; |
|
30 |
|
|
31 |
/** 工位类型(1自动2半自动3手动) */ |
|
32 |
@Excel(name = "工位类型", readConverterExp = "1=自动2半自动3手动") |
|
33 |
private String locationType; |
|
34 |
|
|
35 |
/** 产线编号 */ |
|
36 |
@Excel(name = "产线编号") |
|
37 |
private String lineCode; |
|
38 |
|
|
39 |
/** 备注 */ |
|
40 |
@Excel(name = "备注") |
|
41 |
private String remarks; |
|
42 |
|
|
43 |
/** 逻辑删除 */ |
|
44 |
private String delFlag; |
|
45 |
|
|
46 |
|
|
47 |
} |