Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package com.ubt.jimu.base.event;
/* loaded from: classes.dex */
public class BaseEvent {
public static final int TYPE_NOTIFY_DEFAULT = 1;
public static final int TYPE_NOTIFY_PART = 3;
private String msg;
private int type;
public BaseEvent() {
this(1, "defalt");
}
public String getMsg() {
return this.msg;
}
public int getType() {
return this.type;
}
public BaseEvent(int i, String str) {
this.type = i;
this.msg = str;
}
}

View File

@@ -0,0 +1,18 @@
package com.ubt.jimu.base.event;
/* loaded from: classes.dex */
public class GdprEvent {
private boolean isAgree;
public GdprEvent(boolean z) {
this.isAgree = z;
}
public boolean isAgree() {
return this.isAgree;
}
public void setAgree(boolean z) {
this.isAgree = z;
}
}

View File

@@ -0,0 +1,27 @@
package com.ubt.jimu.base.event;
/* loaded from: classes.dex */
public class MessageEvent {
public static final int TYPE_BLUETOOTH_CONNECT = 2;
public static final int TYPE_BLUETOOTH_DISCONNECT = 3;
public static final int TYPE_LOGIN = 0;
public static final int TYPE_LOGIN_AS_VISTOR = 4;
public static final int TYPE_LOGIN_LOW13 = 7;
public static final int TYPE_LOGOUT = 1;
public static final int TYPE_USERIFO_CHANGE = 6;
public static final int TYPE_WRITE_OFF = 5;
private int type;
public MessageEvent(int i) {
this.type = 0;
this.type = i;
}
public int getType() {
return this.type;
}
public void setType(int i) {
this.type = i;
}
}

View File

@@ -0,0 +1,43 @@
package com.ubt.jimu.base.event;
/* loaded from: classes.dex */
public class SelectPackEvent {
private long packId;
private String packetImgPath;
private String robotName;
public SelectPackEvent(String str, long j) {
this.robotName = str;
this.packId = j;
}
public long getPackId() {
return this.packId;
}
public String getPacketImgPath() {
return this.packetImgPath;
}
public String getRobotName() {
return this.robotName;
}
public void setPackId(long j) {
this.packId = j;
}
public void setPacketImgPath(String str) {
this.packetImgPath = str;
}
public void setRobotName(String str) {
this.robotName = str;
}
public SelectPackEvent(String str, long j, String str2) {
this.robotName = str;
this.packId = j;
this.packetImgPath = str2;
}
}