|
@@ -12,6 +12,7 @@ import com.sheep.gamegroup.di.components.NetComponent;
|
|
|
import com.sheep.gamegroup.di.modules.NetModule;
|
|
import com.sheep.gamegroup.di.modules.NetModule;
|
|
|
import com.sheep.gamegroup.model.entity.AppRecord;
|
|
import com.sheep.gamegroup.model.entity.AppRecord;
|
|
|
import com.sheep.gamegroup.model.entity.TaskEty;
|
|
import com.sheep.gamegroup.model.entity.TaskEty;
|
|
|
|
|
+import com.sheep.gamegroup.model.entity.TaskListen;
|
|
|
import com.sheep.gamegroup.util.ConnectAddress;
|
|
import com.sheep.gamegroup.util.ConnectAddress;
|
|
|
import com.sheep.gamegroup.util.Jump2View;
|
|
import com.sheep.gamegroup.util.Jump2View;
|
|
|
import com.sheep.gamegroup.util.MyDbManager;
|
|
import com.sheep.gamegroup.util.MyDbManager;
|
|
@@ -31,7 +32,6 @@ public class SheepApp extends BaseApplication {
|
|
|
|
|
|
|
|
|
|
|
|
|
private NetComponent netComponent;
|
|
private NetComponent netComponent;
|
|
|
- private TaskEty taskEty;
|
|
|
|
|
private AppRecord lastAppRecord;
|
|
private AppRecord lastAppRecord;
|
|
|
private long lastTime;
|
|
private long lastTime;
|
|
|
|
|
|
|
@@ -50,12 +50,13 @@ public class SheepApp extends BaseApplication {
|
|
|
public void setLastTime(long lastTime) {
|
|
public void setLastTime(long lastTime) {
|
|
|
this.lastTime = lastTime;
|
|
this.lastTime = lastTime;
|
|
|
}
|
|
}
|
|
|
|
|
+ private TaskListen taskEty;
|
|
|
|
|
|
|
|
- public TaskEty getTaskEty() {
|
|
|
|
|
|
|
+ public TaskListen getTaskEty() {
|
|
|
return MyDbManager.getInstance().dbFindTask();
|
|
return MyDbManager.getInstance().dbFindTask();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setTaskEty(TaskEty taskEty) {
|
|
|
|
|
|
|
+ public void setTaskEty(TaskListen taskEty) {
|
|
|
this.taskEty = taskEty;
|
|
this.taskEty = taskEty;
|
|
|
}
|
|
}
|
|
|
|
|
|