WmsBasicback.java
937 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
45
46
package com.huaheng.api.general.domain;
import com.huaheng.api.wcs.domain.Context;
import com.huaheng.api.wcs.domain.Params;
import java.util.List;
public class WmsBasicback {
private String ApiType;
private String Parameters;
private String Method;
private Context Context;
public String getApiType() {
return ApiType;
}
public void setApiType(String apiType) {
ApiType = apiType;
}
public String getParameters() {
return Parameters;
}
public void setParameters(String 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;
}
}