658 lines
18 KiB
Java
658 lines
18 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/8/7 15:04
|
|
* @description:执行中运单
|
|
*/
|
|
public class StartOrderBean {
|
|
|
|
private int res;
|
|
private int code;
|
|
private boolean success;
|
|
private String msg;
|
|
private DataDTO data;
|
|
|
|
public int getRes() {
|
|
return res;
|
|
}
|
|
|
|
public void setRes(int res) {
|
|
this.res = res;
|
|
}
|
|
|
|
public int getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(int code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public boolean isSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public void setSuccess(boolean success) {
|
|
this.success = success;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return msg == null ? "" : msg;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
|
|
public DataDTO getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(DataDTO data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
private String shippingNoteNumber;
|
|
private String serialNumber;
|
|
private String startCountrySubdivisionCode;
|
|
private String endCountrySubdivisionCode;
|
|
private String nfcId;
|
|
private List<WayChildrenDTO> wayChildren;
|
|
private int report;
|
|
private int reportAlct;
|
|
private String carType;
|
|
private String carNumber;
|
|
private Object driverName;
|
|
private String acceptTime;
|
|
private String waybillStatus;
|
|
private String totalAmount;
|
|
private String distance;
|
|
private int avgScore;
|
|
private int isEvaluation;
|
|
private String contractUrl;
|
|
private int waybillId;
|
|
private int operation;
|
|
|
|
public int getWaybillId() {
|
|
return waybillId;
|
|
}
|
|
|
|
public void setWaybillId(int waybillId) {
|
|
this.waybillId = waybillId;
|
|
}
|
|
|
|
public String getShippingNoteNumber() {
|
|
return shippingNoteNumber == null ? "" : shippingNoteNumber;
|
|
}
|
|
|
|
public void setShippingNoteNumber(String shippingNoteNumber) {
|
|
this.shippingNoteNumber = shippingNoteNumber;
|
|
}
|
|
|
|
public String getSerialNumber() {
|
|
return serialNumber == null ? "" : serialNumber;
|
|
}
|
|
|
|
public void setSerialNumber(String serialNumber) {
|
|
this.serialNumber = serialNumber;
|
|
}
|
|
|
|
public String getStartCountrySubdivisionCode() {
|
|
return startCountrySubdivisionCode == null ? "" : startCountrySubdivisionCode;
|
|
}
|
|
|
|
public void setStartCountrySubdivisionCode(String startCountrySubdivisionCode) {
|
|
this.startCountrySubdivisionCode = startCountrySubdivisionCode;
|
|
}
|
|
|
|
public String getEndCountrySubdivisionCode() {
|
|
return endCountrySubdivisionCode == null ? "" : endCountrySubdivisionCode;
|
|
}
|
|
|
|
public void setEndCountrySubdivisionCode(String endCountrySubdivisionCode) {
|
|
this.endCountrySubdivisionCode = endCountrySubdivisionCode;
|
|
}
|
|
|
|
public String getNfcId() {
|
|
return nfcId == null ? "" : nfcId;
|
|
}
|
|
|
|
public void setNfcId(String nfcId) {
|
|
this.nfcId = nfcId;
|
|
}
|
|
|
|
public List<WayChildrenDTO> getWayChildren() {
|
|
if (wayChildren == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return wayChildren;
|
|
}
|
|
|
|
public void setWayChildren(List<WayChildrenDTO> wayChildren) {
|
|
this.wayChildren = wayChildren;
|
|
}
|
|
|
|
public int getReport() {
|
|
return report;
|
|
}
|
|
|
|
public void setReport(int report) {
|
|
this.report = report;
|
|
}
|
|
|
|
public int getReportAlct() {
|
|
return reportAlct;
|
|
}
|
|
|
|
public void setReportAlct(int reportAlct) {
|
|
this.reportAlct = reportAlct;
|
|
}
|
|
|
|
public String getCarType() {
|
|
return carType == null ? "" : carType;
|
|
}
|
|
|
|
public void setCarType(String carType) {
|
|
this.carType = carType;
|
|
}
|
|
|
|
public String getCarNumber() {
|
|
return carNumber == null ? "" : carNumber;
|
|
}
|
|
|
|
public void setCarNumber(String carNumber) {
|
|
this.carNumber = carNumber;
|
|
}
|
|
|
|
public Object getDriverName() {
|
|
return driverName;
|
|
}
|
|
|
|
public void setDriverName(Object driverName) {
|
|
this.driverName = driverName;
|
|
}
|
|
|
|
public String getAcceptTime() {
|
|
return acceptTime == null ? "" : acceptTime;
|
|
}
|
|
|
|
public void setAcceptTime(String acceptTime) {
|
|
this.acceptTime = acceptTime;
|
|
}
|
|
|
|
public String getWaybillStatus() {
|
|
return waybillStatus == null ? "" : waybillStatus;
|
|
}
|
|
|
|
public void setWaybillStatus(String waybillStatus) {
|
|
this.waybillStatus = waybillStatus;
|
|
}
|
|
|
|
public String getTotalAmount() {
|
|
return totalAmount == null ? "" : totalAmount;
|
|
}
|
|
|
|
public void setTotalAmount(String totalAmount) {
|
|
this.totalAmount = totalAmount;
|
|
}
|
|
|
|
public String getDistance() {
|
|
return distance == null ? "" : distance;
|
|
}
|
|
|
|
public void setDistance(String distance) {
|
|
this.distance = distance;
|
|
}
|
|
|
|
public int getAvgScore() {
|
|
return avgScore;
|
|
}
|
|
|
|
public void setAvgScore(int avgScore) {
|
|
this.avgScore = avgScore;
|
|
}
|
|
|
|
public int getIsEvaluation() {
|
|
return isEvaluation;
|
|
}
|
|
|
|
public void setIsEvaluation(int isEvaluation) {
|
|
this.isEvaluation = isEvaluation;
|
|
}
|
|
|
|
public String getContractUrl() {
|
|
return contractUrl == null ? "" : contractUrl;
|
|
}
|
|
|
|
public void setContractUrl(String contractUrl) {
|
|
this.contractUrl = contractUrl;
|
|
}
|
|
|
|
public int getOperation() {
|
|
return operation;
|
|
}
|
|
|
|
public void setOperation(int operation) {
|
|
this.operation = operation;
|
|
}
|
|
|
|
public static class WayChildrenDTO {
|
|
private long id;
|
|
private int orderId;
|
|
private String shippingNoteNumber;
|
|
private Object name;
|
|
private Object phone;
|
|
private String address;
|
|
private String displayOrder;
|
|
private String deadline;
|
|
private String deadlineDate;
|
|
private int type;
|
|
private String updateTime;
|
|
private String realityTimeDate;
|
|
private int status;
|
|
private String longitude;
|
|
private String latitude;
|
|
private List<GoodsDTO> goods;
|
|
private int report;
|
|
private int reportAlct;
|
|
private int delay;
|
|
private List<String> receiptUrl;
|
|
private String receiptTime;
|
|
private String receiptLongitude;
|
|
private String receiptLatitude;
|
|
private String receiptLocationAddress;
|
|
private List<String> sendPutImagesUrl;
|
|
private String sendPutLongitude;
|
|
private String sendPutLatitude;
|
|
private String sendPutLocationAddress;
|
|
private String carType;
|
|
private String carNumber;
|
|
private Object driverName;
|
|
private String acceptTime;
|
|
private String waybillStatus;
|
|
private String totalAmount;
|
|
private String distance;
|
|
private int isEvaluation;
|
|
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public int getOrderId() {
|
|
return orderId;
|
|
}
|
|
|
|
public void setOrderId(int orderId) {
|
|
this.orderId = orderId;
|
|
}
|
|
|
|
public String getShippingNoteNumber() {
|
|
return shippingNoteNumber == null ? "" : shippingNoteNumber;
|
|
}
|
|
|
|
public void setShippingNoteNumber(String shippingNoteNumber) {
|
|
this.shippingNoteNumber = shippingNoteNumber;
|
|
}
|
|
|
|
public Object getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(Object name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public Object getPhone() {
|
|
return phone;
|
|
}
|
|
|
|
public void setPhone(Object phone) {
|
|
this.phone = phone;
|
|
}
|
|
|
|
public String getAddress() {
|
|
return address == null ? "" : address;
|
|
}
|
|
|
|
public void setAddress(String address) {
|
|
this.address = address;
|
|
}
|
|
|
|
public String getDisplayOrder() {
|
|
return displayOrder == null ? "" : displayOrder;
|
|
}
|
|
|
|
public void setDisplayOrder(String displayOrder) {
|
|
this.displayOrder = displayOrder;
|
|
}
|
|
|
|
public String getDeadline() {
|
|
return deadline == null ? "" : deadline;
|
|
}
|
|
|
|
public void setDeadline(String deadline) {
|
|
this.deadline = deadline;
|
|
}
|
|
|
|
public String getDeadlineDate() {
|
|
return deadlineDate == null ? "" : deadlineDate;
|
|
}
|
|
|
|
public void setDeadlineDate(String deadlineDate) {
|
|
this.deadlineDate = deadlineDate;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getUpdateTime() {
|
|
return updateTime == null ? "" : updateTime;
|
|
}
|
|
|
|
public void setUpdateTime(String updateTime) {
|
|
this.updateTime = updateTime;
|
|
}
|
|
|
|
public String getRealityTimeDate() {
|
|
return realityTimeDate == null ? "" : realityTimeDate;
|
|
}
|
|
|
|
public void setRealityTimeDate(String realityTimeDate) {
|
|
this.realityTimeDate = realityTimeDate;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(int status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public String getLongitude() {
|
|
return longitude == null ? "" : longitude;
|
|
}
|
|
|
|
public void setLongitude(String longitude) {
|
|
this.longitude = longitude;
|
|
}
|
|
|
|
public String getLatitude() {
|
|
return latitude == null ? "" : latitude;
|
|
}
|
|
|
|
public void setLatitude(String latitude) {
|
|
this.latitude = latitude;
|
|
}
|
|
|
|
public List<GoodsDTO> getGoods() {
|
|
if (goods == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return goods;
|
|
}
|
|
|
|
public void setGoods(List<GoodsDTO> goods) {
|
|
this.goods = goods;
|
|
}
|
|
|
|
public int getReport() {
|
|
return report;
|
|
}
|
|
|
|
public void setReport(int report) {
|
|
this.report = report;
|
|
}
|
|
|
|
public int getReportAlct() {
|
|
return reportAlct;
|
|
}
|
|
|
|
public void setReportAlct(int reportAlct) {
|
|
this.reportAlct = reportAlct;
|
|
}
|
|
|
|
public int getDelay() {
|
|
return delay;
|
|
}
|
|
|
|
public void setDelay(int delay) {
|
|
this.delay = delay;
|
|
}
|
|
|
|
public List<String> getReceiptUrl() {
|
|
if (receiptUrl == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return receiptUrl;
|
|
}
|
|
|
|
public void setReceiptUrl(List<String> receiptUrl) {
|
|
this.receiptUrl = receiptUrl;
|
|
}
|
|
|
|
public String getReceiptTime() {
|
|
return receiptTime == null ? "" : receiptTime;
|
|
}
|
|
|
|
public void setReceiptTime(String receiptTime) {
|
|
this.receiptTime = receiptTime;
|
|
}
|
|
|
|
public String getReceiptLongitude() {
|
|
return receiptLongitude == null ? "" : receiptLongitude;
|
|
}
|
|
|
|
public void setReceiptLongitude(String receiptLongitude) {
|
|
this.receiptLongitude = receiptLongitude;
|
|
}
|
|
|
|
public String getReceiptLatitude() {
|
|
return receiptLatitude == null ? "" : receiptLatitude;
|
|
}
|
|
|
|
public void setReceiptLatitude(String receiptLatitude) {
|
|
this.receiptLatitude = receiptLatitude;
|
|
}
|
|
|
|
public String getReceiptLocationAddress() {
|
|
return receiptLocationAddress == null ? "" : receiptLocationAddress;
|
|
}
|
|
|
|
public void setReceiptLocationAddress(String receiptLocationAddress) {
|
|
this.receiptLocationAddress = receiptLocationAddress;
|
|
}
|
|
|
|
public List<String> getSendPutImagesUrl() {
|
|
if (sendPutImagesUrl == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return sendPutImagesUrl;
|
|
}
|
|
|
|
public void setSendPutImagesUrl(List<String> sendPutImagesUrl) {
|
|
this.sendPutImagesUrl = sendPutImagesUrl;
|
|
}
|
|
|
|
public String getSendPutLongitude() {
|
|
return sendPutLongitude == null ? "" : sendPutLongitude;
|
|
}
|
|
|
|
public void setSendPutLongitude(String sendPutLongitude) {
|
|
this.sendPutLongitude = sendPutLongitude;
|
|
}
|
|
|
|
public String getSendPutLatitude() {
|
|
return sendPutLatitude == null ? "" : sendPutLatitude;
|
|
}
|
|
|
|
public void setSendPutLatitude(String sendPutLatitude) {
|
|
this.sendPutLatitude = sendPutLatitude;
|
|
}
|
|
|
|
public String getSendPutLocationAddress() {
|
|
return sendPutLocationAddress == null ? "" : sendPutLocationAddress;
|
|
}
|
|
|
|
public void setSendPutLocationAddress(String sendPutLocationAddress) {
|
|
this.sendPutLocationAddress = sendPutLocationAddress;
|
|
}
|
|
|
|
public String getCarType() {
|
|
return carType == null ? "" : carType;
|
|
}
|
|
|
|
public void setCarType(String carType) {
|
|
this.carType = carType;
|
|
}
|
|
|
|
public String getCarNumber() {
|
|
return carNumber == null ? "" : carNumber;
|
|
}
|
|
|
|
public void setCarNumber(String carNumber) {
|
|
this.carNumber = carNumber;
|
|
}
|
|
|
|
public Object getDriverName() {
|
|
return driverName;
|
|
}
|
|
|
|
public void setDriverName(Object driverName) {
|
|
this.driverName = driverName;
|
|
}
|
|
|
|
public String getAcceptTime() {
|
|
return acceptTime == null ? "" : acceptTime;
|
|
}
|
|
|
|
public void setAcceptTime(String acceptTime) {
|
|
this.acceptTime = acceptTime;
|
|
}
|
|
|
|
public String getWaybillStatus() {
|
|
return waybillStatus == null ? "" : waybillStatus;
|
|
}
|
|
|
|
public void setWaybillStatus(String waybillStatus) {
|
|
this.waybillStatus = waybillStatus;
|
|
}
|
|
|
|
public String getTotalAmount() {
|
|
return totalAmount == null ? "" : totalAmount;
|
|
}
|
|
|
|
public void setTotalAmount(String totalAmount) {
|
|
this.totalAmount = totalAmount;
|
|
}
|
|
|
|
public String getDistance() {
|
|
return distance == null ? "" : distance;
|
|
}
|
|
|
|
public void setDistance(String distance) {
|
|
this.distance = distance;
|
|
}
|
|
|
|
public int getIsEvaluation() {
|
|
return isEvaluation;
|
|
}
|
|
|
|
public void setIsEvaluation(int isEvaluation) {
|
|
this.isEvaluation = isEvaluation;
|
|
}
|
|
|
|
public static class GoodsDTO {
|
|
private int id;
|
|
private Object childrenId;
|
|
private String goodName;
|
|
private String goodNum;
|
|
private String goodUnit;
|
|
private Object goodPrice;
|
|
private String packName;
|
|
private Object createTime;
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Object getChildrenId() {
|
|
return childrenId;
|
|
}
|
|
|
|
public void setChildrenId(Object childrenId) {
|
|
this.childrenId = childrenId;
|
|
}
|
|
|
|
public String getGoodName() {
|
|
return goodName == null ? "" : goodName;
|
|
}
|
|
|
|
public void setGoodName(String goodName) {
|
|
this.goodName = goodName;
|
|
}
|
|
|
|
public String getGoodNum() {
|
|
return goodNum == null ? "" : goodNum;
|
|
}
|
|
|
|
public void setGoodNum(String goodNum) {
|
|
this.goodNum = goodNum;
|
|
}
|
|
|
|
public String getGoodUnit() {
|
|
return goodUnit == null ? "" : goodUnit;
|
|
}
|
|
|
|
public void setGoodUnit(String goodUnit) {
|
|
this.goodUnit = goodUnit;
|
|
}
|
|
|
|
public Object getGoodPrice() {
|
|
return goodPrice;
|
|
|
|
}
|
|
|
|
public void setGoodPrice(Object goodPrice) {
|
|
this.goodPrice = goodPrice;
|
|
}
|
|
|
|
public String getPackName() {
|
|
return packName == null ? "" : packName;
|
|
}
|
|
|
|
public void setPackName(String packName) {
|
|
this.packName = packName;
|
|
}
|
|
|
|
public Object getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Object createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|