[2.13.0] taxi个人中心调整

This commit is contained in:
wangmingjun
2022-11-22 20:56:43 +08:00
parent 0c0ff743bb
commit a15ba31cef
17 changed files with 176 additions and 156 deletions

View File

@@ -2,4 +2,16 @@ package com.mogo.eagle.core.data.temp;
//临时使用 后期需要封装
public class EventLogout {
private int messgaeType;
public final static int LOGOUT_TYPE = 100001;
public final static int PERSONAL_TYPE = 100002;
public EventLogout(int messgaeType) {
this.messgaeType = messgaeType;
}
public int getMessgae() {
return messgaeType;
}
}