InventoryDetails.java
656 Bytes
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
package com.huaheng.mobile.invenory;
import java.math.BigDecimal;
/**
*
* @author Enzo Cotter
* @date 2019/12/15
*/
public class InventoryDetails {
private String date;
private BigDecimal qty;
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public BigDecimal getQty() {
return qty;
}
public void setQty(BigDecimal qty) {
this.qty = qty;
}
@Override
public String toString() {
return "InventoryDetails{" +
"date='" + date + '\'' +
", qty=" + qty +
'}';
}
}