jimu-decompiled/sources/com/ubt/jimu/base/BaseEventModel.java
2025-05-13 19:24:51 +02:00

72 lines
1.4 KiB
Java

package com.ubt.jimu.base;
/* loaded from: classes.dex */
public class BaseEventModel {
private ErrorEntity mEntity;
private String url;
public static class ErrorEntity {
private String error;
private String message;
private String path;
private int status;
private long timestamp;
public String getError() {
return this.error;
}
public String getMessage() {
return this.message;
}
public String getPath() {
return this.path;
}
public int getStatus() {
return this.status;
}
public long getTimestamp() {
return this.timestamp;
}
public void setError(String str) {
this.error = str;
}
public void setMessage(String str) {
this.message = str;
}
public void setPath(String str) {
this.path = str;
}
public void setStatus(int i) {
this.status = i;
}
public void setTimestamp(long j) {
this.timestamp = j;
}
}
public ErrorEntity getEntity() {
return this.mEntity;
}
public String getUrl() {
return this.url;
}
public void setEntity(ErrorEntity errorEntity) {
this.mEntity = errorEntity;
}
public void setUrl(String str) {
this.url = str;
}
}