WaterEleCountMoney.java
844 字节
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
package com.sunyo.energy.location.model;
import java.math.BigDecimal;
import java.util.Date;
public class WaterEleCountMoney {
private Integer id;
private BigDecimal wmMoney;
private BigDecimal emMoney;
private Date createDate;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public BigDecimal getWmMoney() {
return wmMoney;
}
public void setWmMoney(BigDecimal wmMoney) {
this.wmMoney = wmMoney;
}
public BigDecimal getEmMoney() {
return emMoney;
}
public void setEmMoney(BigDecimal emMoney) {
this.emMoney = emMoney;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
}