back_recharge
parent
ea6d17712d
commit
1b4c3305a6
|
|
@ -1,14 +1,24 @@
|
|||
package com.ljsd.jieling.logic.map;
|
||||
|
||||
public class CellValue {
|
||||
import com.google.common.collect.Sets;
|
||||
|
||||
private int eventType;
|
||||
import java.util.Set;
|
||||
|
||||
public int getEventType() {
|
||||
return eventType;
|
||||
public class Cell {
|
||||
|
||||
private Set<Integer> eventIds = Sets.newConcurrentHashSet();;
|
||||
|
||||
private boolean isFinish;
|
||||
|
||||
public Set<Integer> getEventIds() {
|
||||
return eventIds;
|
||||
}
|
||||
|
||||
public void setEventType(int eventType) {
|
||||
this.eventType = eventType;
|
||||
public boolean isFinish() {
|
||||
return isFinish;
|
||||
}
|
||||
|
||||
public void setFinish(boolean finish) {
|
||||
isFinish = finish;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue