WmsBasicInfo.java
866 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
39
40
41
42
43
44
package com.huaheng.api.wcs.domain;
import java.util.List;
public class WmsBasicInfo {
private String ApiType;
private List<Params> Parameters;
private String Method;
private Context Context;
public String getApiType() {
return ApiType;
}
public void setApiType(String apiType) {
ApiType = apiType;
}
public List<Params> getParameters() {
return Parameters;
}
public void setParameters(List<Params> parameters) {
Parameters = parameters;
}
public String getMethod() {
return Method;
}
public void setMethod(String method) {
Method = method;
}
public com.huaheng.api.wcs.domain.Context getContext() {
return Context;
}
public void setContext(com.huaheng.api.wcs.domain.Context context) {
Context = context;
}
}