BillBackDetail.java
3.57 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
package com.phxl.modules.goods.entity.billback;
import com.alibaba.fastjson.annotation.JSONField;
import java.math.BigDecimal;
import java.util.Date;
/**
* 医院退货单明细信息
*/
public class BillBackDetail{
@JSONField(name = "BillNo")
private String billNo; //单据编号
@JSONField(name = "RowNo")
private int rowNo; //行号
@JSONField(name = "MedMVBillNo")
private String medMVBillNo; //入库单据编号
@JSONField(name = "MedMVRowNo")
private int medMVRowNo; //入库单据原行号
@JSONField(name = "GoodsCode")
private String goodsCode; //商品编码
@JSONField(name = "GoodsName")
private String goodsName; //商品名称
@JSONField(name = "GoodsSpec")
private String goodsSpec; //商品规格
@JSONField(name = "Returns_Unit")
private String returns_Unit; //包装单位
@JSONField(name = "Returns_Price")
private BigDecimal returns_Price; //退货价格
@JSONField(name = "Manufacturer")
private String manufacturer; //生产厂商
@JSONField(name = "RpiQty")
private BigDecimal rpiQty; //退货数量
@JSONField(name = "Amount")
private BigDecimal amount; //金额
@JSONField(name = "Lot")
private String lot; //批号
@JSONField(name = "ProductionDate")
private Date productionDate; //生产日期
@JSONField(name = "ExpireDate")
private Date expireDate; //有效期至
@JSONField(name = "Memo")
private String memo; //备注
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getBillNo() {
return billNo;
}
public void setBillNo(String billNo) {
this.billNo = billNo;
}
public int getRowNo() {
return rowNo;
}
public void setRowNo(int rowNo) {
this.rowNo = rowNo;
}
public String getMedMVBillNo() {
return medMVBillNo;
}
public void setMedMVBillNo(String medMVBillNo) {
this.medMVBillNo = medMVBillNo;
}
public int getMedMVRowNo() {
return medMVRowNo;
}
public void setMedMVRowNo(int medMVRowNo) {
this.medMVRowNo = medMVRowNo;
}
public String getGoodsCode() {
return goodsCode;
}
public void setGoodsCode(String goodsCode) {
this.goodsCode = goodsCode;
}
public String getGoodsName() {
return goodsName;
}
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
public String getGoodsSpec() {
return goodsSpec;
}
public void setGoodsSpec(String goodsSpec) {
this.goodsSpec = goodsSpec;
}
public String getReturns_Unit() {
return returns_Unit;
}
public void setReturns_Unit(String returns_Unit) {
this.returns_Unit = returns_Unit;
}
public BigDecimal getReturns_Price() {
return returns_Price;
}
public void setReturns_Price(BigDecimal returns_Price) {
this.returns_Price = returns_Price;
}
public String getManufacturer() {
return manufacturer;
}
public void setManufacturer(String manufacturer) {
this.manufacturer = manufacturer;
}
public BigDecimal getRpiQty() {
return rpiQty;
}
public void setRpiQty(BigDecimal rpiQty) {
this.rpiQty = rpiQty;
}
public BigDecimal getAmount() {
return amount;
}
public void setAmount(BigDecimal amount) {
this.amount = amount;
}
public String getLot() {
return lot;
}
public void setLot(String lot) {
this.lot = lot;
}
public Date getProductionDate() {
return productionDate;
}
public void setProductionDate(Date productionDate) {
this.productionDate = productionDate;
}
public Date getExpireDate() {
return expireDate;
}
public void setExpireDate(Date expireDate) {
this.expireDate = expireDate;
}
public String getMemo() {
return memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
}