|
@@ -13,10 +13,30 @@ public class OrgExamPropertyCacheBean extends RandomCacheBean {
|
|
|
|
|
|
private static final long serialVersionUID = -8521363493722068369L;
|
|
|
|
|
|
+ private Long examId;
|
|
|
+
|
|
|
+ private Long orgId;
|
|
|
+
|
|
|
private String key;
|
|
|
|
|
|
private String value;
|
|
|
|
|
|
+ public Long getExamId() {
|
|
|
+ return examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamId(Long examId) {
|
|
|
+ this.examId = examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getOrgId() {
|
|
|
+ return orgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrgId(Long orgId) {
|
|
|
+ this.orgId = orgId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getKey() {
|
|
|
return key;
|
|
|
}
|