HisGoodsBound.java
3.91 KB
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
192
193
194
195
196
197
198
package cn.csbr.springboot.dao.model;
import org.apache.ibatis.type.JdbcType;
import tk.mybatis.mapper.annotation.ColumnType;
import javax.persistence.Column;
import javax.persistence.Id;
import javax.persistence.Table;
import java.math.BigDecimal;
import java.util.Date;
@Table(name = "his_goods_bound")
public class HisGoodsBound {
/**
* 系统唯一标识
*/
@Id
@Column(name = "GUID")
private String guid;
/**
* 商品表guid
*/
@Column(name = "HisGoodsGUID")
private String hisgoodguid;
/**
* 科室guid
*/
@Column(name = "orgGUID")
private String orgguid;
/**
* 库存上限
*/
@Column(name = "StockUpperLimit")
private BigDecimal stockupperlimit;
/**
* 库存下限
*/
@Column(name = "StockLowerLimit")
private BigDecimal stocklowerlimit;
/**
* 创建人
*/
@Column(name = "CREATERID")
private String createrid;
/**
* 创建时间
*/
@Column(name = "CREATETIME")
@ColumnType(jdbcType = JdbcType.TIMESTAMP)
private Date createtime;
/**
* 修改人
*/
@Column(name = "UPDATERID")
private String updaterid;
/**
* 修改时间
*/
@Column(name = "UPDATETIME")
@ColumnType(jdbcType = JdbcType.TIMESTAMP)
private Date updatetime;
/**
* 备注
*/
@Column(name = "Memo")
private String memo;
/**
* This method returns the value of the 系统唯一标识
*
* @return GUID - 系统唯一标识
*/
public String getGuid() {
return guid;
}
/**
* This method set the value of the 系统唯一标识
*
* @param guid 系统唯一标识
*/
public void setGuid(String guid) {
this.guid = guid;
}
/**
* This method returns the value of the 库存上限
*
* @return StockUpperLimit - 库存上限
*/
public BigDecimal getStockupperlimit() {
return stockupperlimit;
}
/**
* This method set the value of the 库存上限
*
* @param stockupperlimit 库存上限
*/
public void setStockupperlimit(BigDecimal stockupperlimit) {
this.stockupperlimit = stockupperlimit;
}
/**
* This method returns the value of the 库存下限
*
* @return StockLowerLimit - 库存下限
*/
public BigDecimal getStocklowerlimit() {
return stocklowerlimit;
}
/**
* This method set the value of the 库存下限
*
* @param stocklowerlimit 库存下限
*/
public void setStocklowerlimit(BigDecimal stocklowerlimit) {
this.stocklowerlimit = stocklowerlimit;
}
/**
* This method returns the value of the 备注
*
* @return Memo - 备注
*/
public String getMemo() {
return memo;
}
/**
* This method set the value of the 备注
*
* @param memo 备注
*/
public void setMemo(String memo) {
this.memo = memo;
}
public String getCreaterid() {
return createrid;
}
public void setCreaterid(String createrid) {
this.createrid = createrid;
}
public Date getCreatetime() {
return createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public String getUpdaterid() {
return updaterid;
}
public void setUpdaterid(String updaterid) {
this.updaterid = updaterid;
}
public Date getUpdatetime() {
return updatetime;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
public String getHisgoodguid() {
return hisgoodguid;
}
public void setHisgoodguid(String hisgoodguid) {
this.hisgoodguid = hisgoodguid;
}
public String getOrgguid() {
return orgguid;
}
public void setOrgguid(String orgguid) {
this.orgguid = orgguid;
}
}