88e030b7
王彪总
init project
|
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
|
package com.java110.dto.meter;
import java.io.Serializable;
public class NotifyMeterWaterOrderDto implements Serializable{
private String appId;
private String implBean;
private String param;
public NotifyMeterWaterOrderDto(String appId, String param,String implBean) {
this.appId = appId;
this.param = param;
this.implBean = implBean;
}
public NotifyMeterWaterOrderDto() {
}
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getParam() {
return param;
}
public void setParam(String param) {
this.param = param;
}
public String getImplBean() {
return implBean;
}
public void setImplBean(String implBean) {
this.implBean = implBean;
}
}
|