Self Truck Screen Design
commit
fbd60a37d6
|
@ -0,0 +1,45 @@
|
|||
|
||||
package com.utopiaindustries.selftrucking.models;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@Generated("jsonschema2pojo")
|
||||
public class ContainerWorkflowDatum {
|
||||
|
||||
@SerializedName("containerNo")
|
||||
@Expose
|
||||
private String containerNo;
|
||||
@SerializedName("origin")
|
||||
@Expose
|
||||
private String origin;
|
||||
@SerializedName("destination")
|
||||
@Expose
|
||||
private String destination;
|
||||
|
||||
public String getContainerNo() {
|
||||
return containerNo;
|
||||
}
|
||||
|
||||
public void setContainerNo(String containerNo) {
|
||||
this.containerNo = containerNo;
|
||||
}
|
||||
|
||||
public String getOrigin() {
|
||||
return origin;
|
||||
}
|
||||
|
||||
public void setOrigin(String origin) {
|
||||
this.origin = origin;
|
||||
}
|
||||
|
||||
public String getDestination() {
|
||||
return destination;
|
||||
}
|
||||
|
||||
public void setDestination(String destination) {
|
||||
this.destination = destination;
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,57 @@
|
|||
|
||||
package com.utopiaindustries.selftrucking.models;
|
||||
|
||||
import java.util.List;
|
||||
import javax.annotation.Generated;
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
@Generated("jsonschema2pojo")
|
||||
public class Example {
|
||||
|
||||
@SerializedName("truckerName")
|
||||
@Expose
|
||||
private String truckerName;
|
||||
@SerializedName("containerWorkflowData")
|
||||
@Expose
|
||||
private List<ContainerWorkflowDatum> containerWorkflowData;
|
||||
@SerializedName("message")
|
||||
@Expose
|
||||
private String message;
|
||||
@SerializedName("status")
|
||||
@Expose
|
||||
private Boolean status;
|
||||
|
||||
public String getTruckerName() {
|
||||
return truckerName;
|
||||
}
|
||||
|
||||
public void setTruckerName(String truckerName) {
|
||||
this.truckerName = truckerName;
|
||||
}
|
||||
|
||||
public List<ContainerWorkflowDatum> getContainerWorkflowData() {
|
||||
return containerWorkflowData;
|
||||
}
|
||||
|
||||
public void setContainerWorkflowData(List<ContainerWorkflowDatum> containerWorkflowData) {
|
||||
this.containerWorkflowData = containerWorkflowData;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public Boolean getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Boolean status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue