hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
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_material_info
11  * 
12  * @author Billion-Yi
13  * @date 2024-11-26
14  */
15 @Data
16 public class BsMaterialInfo 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 materialCode;
26
27     /** 物料名称 */
28     @Excel(name = "物料名称")
29     private String materialName;
30
31     /** 视图 */
32     @Excel(name = "视图")
33     private String materialView;
34
35     /** 种类 */
36     @Excel(name = "种类")
37     private String typeZ;
38
39     /** 类型 */
40     @Excel(name = "类型")
41     private String typeL;
42
43     /** 单位 */
44     @Excel(name = "单位")
45     private String unit;
46
47     /** 版本 */
48     @Excel(name = "版本")
49     private String version;
50
51     /** 状态 */
52     @Excel(name = "状态")
53     private String status;
54
55     /** 厂商 */
56     @Excel(name = "厂商")
57     private String supplier;
58
59     /** 数据来源 */
60     @Excel(name = "数据来源")
61     private String dataSource;
62
63     /** 逻辑删除 */
64     private String delFlag;
65
66     /** 备注 */
67     @Excel(name = "备注")
68     private String remark;
69
70
71 }