Totals.java
1.2 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
package com.tianbo.util.dao;
import java.math.BigDecimal;
/**
* 所有需要计算对象存储器
*/
public class Totals {
private BigDecimal weight;
private BigDecimal pcs;
private BigDecimal vol;
private BigDecimal hbillqty;
public Totals(BigDecimal weight,BigDecimal pcs,BigDecimal vol){
this.weight = weight;
this.pcs = pcs;
this.vol = vol;
}
public Totals(BigDecimal weight,BigDecimal pcs,BigDecimal vol,BigDecimal hbillqty){
this.weight = weight;
this.pcs = pcs;
this.vol = vol;
this.hbillqty = hbillqty;
}
public BigDecimal getWeight() {
return weight;
}
public void setWeight(BigDecimal weight) {
this.weight = weight;
}
public BigDecimal getPcs() {
return pcs;
}
public void setPcs(BigDecimal pcs) {
this.pcs = pcs;
}
public BigDecimal getVol() {
return vol;
}
public void setVol(BigDecimal vol) {
this.vol = vol;
}
public BigDecimal getHbillqty() {
return hbillqty;
}
public void setHbillqty(BigDecimal hbillqty) {
this.hbillqty = hbillqty;
}
}