diff options
Diffstat (limited to 'src/main/java/com/nis/entity/ConfEvent.java')
| -rw-r--r-- | src/main/java/com/nis/entity/ConfEvent.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/com/nis/entity/ConfEvent.java b/src/main/java/com/nis/entity/ConfEvent.java new file mode 100644 index 0000000..40bb409 --- /dev/null +++ b/src/main/java/com/nis/entity/ConfEvent.java @@ -0,0 +1,22 @@ +package com.nis.entity;
+
+import java.io.Serializable;
+
+public class ConfEvent implements Serializable{
+
+ private String table;
+ private Integer value;
+ public String getTable() {
+ return table;
+ }
+ public void setTable(String table) {
+ this.table = table;
+ }
+ public Integer getValue() {
+ return value;
+ }
+ public void setValue(Integer value) {
+ this.value = value;
+ }
+
+}
|
