44 lines
912 B
Java
44 lines
912 B
Java
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;
|
|
}
|
|
}
|