BillSettlementDetail.java
3.49 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
package com.phxl.modules.goods.entity.billsettlement;
import java.math.BigDecimal;
import java.util.Date;
/**
* 医院结算单明细信息
*/
public class BillSettlementDetail{
private String id;
private String settleBillNo; //结算单号
private int rowNo; //行号
private String goodsCode; //采购方_商品编码
private String goodsName; //采购方_商品名称
private String goodsSpec;
private String producerName;
private String goodsCate;
private BigDecimal settleQty; //采购方_结算数量
private String unit; //采购方_包装单位
private BigDecimal settlePrice; //结算价格
private BigDecimal settleAmount; //结算金额
private String registKey; //批准文号
private String lot;
private Date productionDate;
private Date expireDate;
private BigDecimal tax; //税率
private BigDecimal discount; //折扣率
private Date create_time;
private Date update_time;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getSettleBillNo() {
return settleBillNo;
}
public void setSettleBillNo(String settleBillNo) {
this.settleBillNo = settleBillNo;
}
public int getRowNo() {
return rowNo;
}
public void setRowNo(int rowNo) {
this.rowNo = rowNo;
}
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 getProducerName() {
return producerName;
}
public void setProducerName(String producerName) {
this.producerName = producerName;
}
public String getGoodsCate() {
return goodsCate;
}
public void setGoodsCate(String goodsCate) {
this.goodsCate = goodsCate;
}
public BigDecimal getSettleQty() {
return settleQty;
}
public void setSettleQty(BigDecimal settleQty) {
this.settleQty = settleQty;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public BigDecimal getSettlePrice() {
return settlePrice;
}
public void setSettlePrice(BigDecimal settlePrice) {
this.settlePrice = settlePrice;
}
public BigDecimal getSettleAmount() {
return settleAmount;
}
public void setSettleAmount(BigDecimal settleAmount) {
this.settleAmount = settleAmount;
}
public String getRegistKey() {
return registKey;
}
public void setRegistKey(String registKey) {
this.registKey = registKey;
}
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 Date getCreate_time() {
return create_time;
}
public void setCreate_time(Date create_time) {
this.create_time = create_time;
}
public Date getUpdate_time() {
return update_time;
}
public void setUpdate_time(Date update_time) {
this.update_time = update_time;
}
public BigDecimal getTax() {
return tax;
}
public void setTax(BigDecimal tax) {
this.tax = tax;
}
public BigDecimal getDiscount() {
return discount;
}
public void setDiscount(BigDecimal discount) {
this.discount = discount;
}
}