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
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_location_info
 * 
 * @author Billion-Yi
 * @date 2024-11-26
 */
@Data
public class BsLocationInfo extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    private Long id;
 
    /** 工位编号 */
    @Excel(name = "工位编号")
    private String locationCode;
 
    /** 工位名称 */
    @Excel(name = "工位名称")
    private String locationName;
 
    /** 工位类型(1自动2半自动3手动) */
    @Excel(name = "工位类型", readConverterExp = "1=自动2半自动3手动")
    private String locationType;
 
    /** 产线编号 */
    @Excel(name = "产线编号")
    private String lineCode;
 
    /** 备注 */
    @Excel(name = "备注")
    private String remarks;
 
    /** 逻辑删除 */
    private String delFlag;
 
 
}