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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
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;
 
import java.math.BigDecimal;
 
@TableName("licensestorage")
public class LicenseStorage {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    /**   id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 许可证编号  licensecode **/
    private String licensecode;
 
    /** 库区数量  area **/
    private Integer area;
 
    /** 库房数量  storagenum **/
    private Integer storagenum;
 
    /** 库房面积  storagearea **/
    private BigDecimal storagearea;
 
    /** 核定药量 千克(kg)  powder **/
    private BigDecimal powder;
 
    /** 1.1级库房数量  firststoragenum **/
    private Integer firststoragenum;
 
    /** 1.1级库房面积  firststoragearea **/
    private BigDecimal firststoragearea;
 
    /** 1.1级库房核定药量 千克(kg)  firstpowder **/
    private BigDecimal firstpowder;
 
    /** 1.3级库房数量  thirdstoragenum **/
    private Integer thirdstoragenum;
 
    /** 1.3级库房面积  thirdtoragearea **/
    private BigDecimal thirdstoragearea;
 
    /** 1.3级库房核定药量 千克(kg)  thirdpowder **/
    private BigDecimal thirdpowder;
 
    /** 库房类型(1.危险品中转库;2.药物总库;3.成品总库)  type **/
    private Byte type;
 
    /** 标记(预留)  flag **/
    private Byte flag;
 
    /**     id   **/
    public Long getId() {
        return id;
    }
 
    /**     id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getLicensecode() {
        return licensecode;
    }
 
    public void setLicensecode(String licensecode) {
        this.licensecode = licensecode;
    }
 
    public Integer getArea() {
        return area;
    }
 
    public void setArea(Integer area) {
        this.area = area;
    }
 
    /**   库房数量  storagenum   **/
    public Integer getStoragenum() {
        return storagenum;
    }
 
    /**   库房数量  storagenum   **/
    public void setStoragenum(Integer storagenum) {
        this.storagenum = storagenum;
    }
 
    /**   库房面积  storagearea   **/
    public BigDecimal getStoragearea() {
        return storagearea;
    }
 
    /**   库房面积  storagearea   **/
    public void setStoragearea(BigDecimal storagearea) {
        this.storagearea = storagearea;
    }
 
    /**   核定药量 千克(kg)  powder   **/
    public BigDecimal getPowder() {
        return powder;
    }
 
    /**   核定药量 千克(kg)  powder   **/
    public void setPowder(BigDecimal powder) {
        this.powder = powder;
    }
 
    /**   1.1级库房数量  firststoragenum   **/
    public Integer getFirststoragenum() {
        return firststoragenum;
    }
 
    /**   1.1级库房数量  firststoragenum   **/
    public void setFirststoragenum(Integer firststoragenum) {
        this.firststoragenum = firststoragenum;
    }
 
    /**   1.1级库房面积  firststoragearea   **/
    public BigDecimal getFirststoragearea() {
        return firststoragearea;
    }
 
    /**   1.1级库房面积  firststoragearea   **/
    public void setFirststoragearea(BigDecimal firststoragearea) {
        this.firststoragearea = firststoragearea;
    }
 
    /**   1.1级库房核定药量 千克(kg)  firstpowder   **/
    public BigDecimal getFirstpowder() {
        return firstpowder;
    }
 
    /**   1.1级库房核定药量 千克(kg)  firstpowder   **/
    public void setFirstpowder(BigDecimal firstpowder) {
        this.firstpowder = firstpowder;
    }
 
    /**   1.3级库房数量  thirdstoragenum   **/
    public Integer getThirdstoragenum() {
        return thirdstoragenum;
    }
 
    /**   1.3级库房数量  thirdstoragenum   **/
    public void setThirdstoragenum(Integer thirdstoragenum) {
        this.thirdstoragenum = thirdstoragenum;
    }
 
    public BigDecimal getThirdstoragearea() {
        return thirdstoragearea;
    }
 
    public void setThirdstoragearea(BigDecimal thirdstoragearea) {
        this.thirdstoragearea = thirdstoragearea;
    }
 
    /**   1.3级库房核定药量 千克(kg)  thirdpowder   **/
    public BigDecimal getThirdpowder() {
        return thirdpowder;
    }
 
    /**   1.3级库房核定药量 千克(kg)  thirdpowder   **/
    public void setThirdpowder(BigDecimal thirdpowder) {
        this.thirdpowder = thirdpowder;
    }
 
    /**   库房类型(1.危险品中转库;2.药物总库;3.成品总库)  type   **/
    public Byte getType() {
        return type;
    }
 
    /**   库房类型(1.危险品中转库;2.药物总库;3.成品总库)  type   **/
    public void setType(Byte type) {
        this.type = type;
    }
 
    /**   标记(预留)  flag   **/
    public Byte getFlag() {
        return flag;
    }
 
    /**   标记(预留)  flag   **/
    public void setFlag(Byte flag) {
        this.flag = flag;
    }
}