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
| 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_line_info
| *
| * @author Billion-Yi
| * @date 2024-11-22
| */
| @Data
| public class BsLineInfo extends BaseEntity
| {
| private static final long serialVersionUID = 1L;
|
| /** 主键id */
| private Long id;
|
| /** 产线编号 */
| @Excel(name = "产线编号")
| private String lineCode;
|
| /** 产线名称 */
| @Excel(name = "产线名称")
| private String lineName;
|
| /** 备注 */
| @Excel(name = "备注")
| private String remarks;
|
| /** 状态 */
| @Excel(name = "状态")
| private String status;
|
| /** 逻辑删除 */
| private String delFlag;
|
|
| }
|
|