-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathParamRuleEntity.java
More file actions
51 lines (39 loc) · 1.06 KB
/
Copy pathParamRuleEntity.java
File metadata and controls
51 lines (39 loc) · 1.06 KB
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
47
48
49
50
51
package io.arex.inst.runtime.model;
import java.util.List;
public class ParamRuleEntity {
private String id;
private String appId;
private String urlRuleId;
private String paramType;
private List<ValueRuleEntity> valueRuleEntityList;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getUrlRuleId() {
return urlRuleId;
}
public void setUrlRuleId(String urlRuleId) {
this.urlRuleId = urlRuleId;
}
public String getParamType() {
return paramType;
}
public void setParamType(String paramType) {
this.paramType = paramType;
}
public List<ValueRuleEntity> getValueRuleEntityList() {
return valueRuleEntityList;
}
public void setValueRuleEntityList(List<ValueRuleEntity> valueRuleEntityList) {
this.valueRuleEntityList = valueRuleEntityList;
}
}