1 | |
package org.kuali.student.common.dictionary.dto; |
2 | |
|
3 | |
import java.io.Serializable; |
4 | |
import java.util.List; |
5 | |
|
6 | |
|
7 | |
|
8 | 0 | public class CommonLookup implements Serializable { |
9 | |
|
10 | |
private static final long serialVersionUID = 1L; |
11 | |
|
12 | |
private String id; |
13 | |
private String name; |
14 | |
private String desc; |
15 | |
private String searchTypeId; |
16 | |
private String resultReturnKey; |
17 | |
private String searchParamIdKey; |
18 | |
private List<CommonLookupParam> params; |
19 | |
|
20 | |
public String getSearchTypeId() { |
21 | 0 | return searchTypeId; |
22 | |
} |
23 | |
|
24 | |
public void setSearchTypeId(String searchTypeId) { |
25 | 0 | this.searchTypeId = searchTypeId; |
26 | 0 | } |
27 | |
|
28 | |
public String getResultReturnKey() { |
29 | 0 | return resultReturnKey; |
30 | |
} |
31 | |
|
32 | |
public void setResultReturnKey(String resultReturnKey) { |
33 | 0 | this.resultReturnKey = resultReturnKey; |
34 | 0 | } |
35 | |
|
36 | |
public List<CommonLookupParam> getParams() { |
37 | 0 | return params; |
38 | |
} |
39 | |
|
40 | |
public void setParams(List<CommonLookupParam> params) { |
41 | 0 | this.params = params; |
42 | 0 | } |
43 | |
|
44 | |
public String getId() { |
45 | 0 | return id; |
46 | |
} |
47 | |
|
48 | |
public void setId(String id) { |
49 | 0 | this.id = id; |
50 | 0 | } |
51 | |
|
52 | |
public String getName() { |
53 | 0 | return name; |
54 | |
} |
55 | |
|
56 | |
public void setName(String name) { |
57 | 0 | this.name = name; |
58 | 0 | } |
59 | |
|
60 | |
public String getDesc() { |
61 | 0 | return desc; |
62 | |
} |
63 | |
|
64 | |
public void setDesc(String desc) { |
65 | 0 | this.desc = desc; |
66 | 0 | } |
67 | |
|
68 | |
public String getSearchParamIdKey() { |
69 | 0 | return searchParamIdKey; |
70 | |
} |
71 | |
|
72 | |
public void setSearchParamIdKey(String searchParamIdKey) { |
73 | 0 | this.searchParamIdKey = searchParamIdKey; |
74 | 0 | } |
75 | |
|
76 | |
} |