Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package com.gk.firework.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
@TableName("productcategory")
public class ProductCategory {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 1.大类;2.小类  type **/
    private Byte type;
 
    /** 类别编码  code **/
    private String code;
 
    /** 类别名称  name **/
    private String name;
 
    /** 小类对应的大类名称  parentname **/
    private String parentname;
 
    /** 类别说明  content **/
    private String content;
 
    /** 备注  remark **/
    private String remark;
 
    /** 备用字段  flag **/
    private Byte flag;
 
    /** 等级(A/B/C/D)level **/
    private String level;
 
    /** 生成产品编码的一字节编码 bitcodee **/
    private String bitcode;
 
    /**     id   **/
    public Long getId() {
        return id;
    }
 
    /**     id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   1.大类;2.小类  type   **/
    public Byte getType() {
        return type;
    }
 
    /**   1.大类;2.小类  type   **/
    public void setType(Byte type) {
        this.type = type;
    }
 
    /**   类别编码  code   **/
    public String getCode() {
        return code;
    }
 
    /**   类别编码  code   **/
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }
 
    /**   类别名称  name   **/
    public String getName() {
        return name;
    }
 
    /**   类别名称  name   **/
    public void setName(String name) {
        this.name = name == null ? null : name.trim();
    }
 
    /**   小类对应的大类名称  parentname   **/
    public String getParentname() {
        return parentname;
    }
 
    /**   小类对应的大类名称  parentname   **/
    public void setParentname(String parentname) {
        this.parentname = parentname == null ? null : parentname.trim();
    }
 
    /**   类别说明  content   **/
    public String getContent() {
        return content;
    }
 
    /**   类别说明  content   **/
    public void setContent(String content) {
        this.content = content == null ? null : content.trim();
    }
 
    /**   备注  remark   **/
    public String getRemark() {
        return remark;
    }
 
    /**   备注  remark   **/
    public void setRemark(String remark) {
        this.remark = remark == null ? null : remark.trim();
    }
 
    /**   备用字段  flag   **/
    public Byte getFlag() {
        return flag;
    }
 
    /**   备用字段  flag   **/
    public void setFlag(Byte flag) {
        this.flag = flag;
    }
 
    public String getLevel() {
        return level;
    }
 
    public void setLevel(String level) {
        this.level = level;
    }
 
    public String getBitcode() {
        return bitcode;
    }
 
    public void setBitcode(String bitcode) {
        this.bitcode = bitcode;
    }
}