version:1.0.0
update:更换包名 bugfixes:
This commit is contained in:
44
app/src/main/java/com/xxpatx/os/bean/ExpressData.java
Normal file
44
app/src/main/java/com/xxpatx/os/bean/ExpressData.java
Normal file
@@ -0,0 +1,44 @@
|
||||
package com.xxpatx.os.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ExpressData implements Serializable {
|
||||
private static final long serialVersionUID = 6282718995656979667L;
|
||||
|
||||
String traceId;
|
||||
String trace_id;
|
||||
boolean success;
|
||||
LogisticsTrace logisticsTrace;
|
||||
|
||||
public String getTraceId() {
|
||||
return traceId;
|
||||
}
|
||||
|
||||
public void setTraceId(String traceId) {
|
||||
this.traceId = traceId;
|
||||
}
|
||||
|
||||
public String getTrace_id() {
|
||||
return trace_id;
|
||||
}
|
||||
|
||||
public void setTrace_id(String trace_id) {
|
||||
this.trace_id = trace_id;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public LogisticsTrace getLogisticsTrace() {
|
||||
return logisticsTrace;
|
||||
}
|
||||
|
||||
public void setLogisticsTrace(LogisticsTrace logisticsTrace) {
|
||||
this.logisticsTrace = logisticsTrace;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user