初始化
This commit is contained in:
@@ -0,0 +1,281 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class BankCardListBean {
|
||||
|
||||
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 List<RecordsDTO> records;
|
||||
private int total;
|
||||
private int size;
|
||||
private int current;
|
||||
private List<?> orders;
|
||||
private boolean searchCount;
|
||||
private int pages;
|
||||
|
||||
public List<RecordsDTO> getRecords() {
|
||||
if (records == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return records;
|
||||
}
|
||||
|
||||
public void setRecords(List<RecordsDTO> records) {
|
||||
this.records = records;
|
||||
}
|
||||
|
||||
public int getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
public void setTotal(int total) {
|
||||
this.total = total;
|
||||
}
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
public void setSize(int size) {
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
public int getCurrent() {
|
||||
return current;
|
||||
}
|
||||
|
||||
public void setCurrent(int current) {
|
||||
this.current = current;
|
||||
}
|
||||
|
||||
public List<?> getOrders() {
|
||||
if (orders == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return orders;
|
||||
}
|
||||
|
||||
public void setOrders(List<?> orders) {
|
||||
this.orders = orders;
|
||||
}
|
||||
|
||||
public boolean isSearchCount() {
|
||||
return searchCount;
|
||||
}
|
||||
|
||||
public void setSearchCount(boolean searchCount) {
|
||||
this.searchCount = searchCount;
|
||||
}
|
||||
|
||||
public int getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
public void setPages(int pages) {
|
||||
this.pages = pages;
|
||||
}
|
||||
|
||||
public static class RecordsDTO {
|
||||
private int id;
|
||||
private String bankId;
|
||||
private String bankName;
|
||||
private String cardNo;
|
||||
private String bankImgUrl;
|
||||
private int cardType;
|
||||
private int auditStatus;
|
||||
private int createUser;
|
||||
private String createUserName;
|
||||
private String createTime;
|
||||
private String openBank;
|
||||
private String companyName;
|
||||
private String companyCode;
|
||||
private String address;
|
||||
private String phone;
|
||||
private int cardUserType;
|
||||
private String userCompany;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getBankId() {
|
||||
return bankId == null ? "" : bankId;
|
||||
}
|
||||
|
||||
public void setBankId(String bankId) {
|
||||
this.bankId = bankId;
|
||||
}
|
||||
|
||||
public String getBankName() {
|
||||
return bankName == null ? "" : bankName;
|
||||
}
|
||||
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
|
||||
public String getCardNo() {
|
||||
return cardNo == null ? "" : cardNo;
|
||||
}
|
||||
|
||||
public void setCardNo(String cardNo) {
|
||||
this.cardNo = cardNo;
|
||||
}
|
||||
|
||||
public String getBankImgUrl() {
|
||||
return bankImgUrl == null ? "" : bankImgUrl;
|
||||
}
|
||||
|
||||
public void setBankImgUrl(String bankImgUrl) {
|
||||
this.bankImgUrl = bankImgUrl;
|
||||
}
|
||||
|
||||
public int getCardType() {
|
||||
return cardType;
|
||||
}
|
||||
|
||||
public void setCardType(int cardType) {
|
||||
this.cardType = cardType;
|
||||
}
|
||||
|
||||
public int getAuditStatus() {
|
||||
return auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(int auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public int getCreateUser() {
|
||||
return createUser;
|
||||
}
|
||||
|
||||
public void setCreateUser(int createUser) {
|
||||
this.createUser = createUser;
|
||||
}
|
||||
|
||||
public String getCreateUserName() {
|
||||
return createUserName == null ? "" : createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime == null ? "" : createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getOpenBank() {
|
||||
return openBank == null ? "" : openBank;
|
||||
}
|
||||
|
||||
public void setOpenBank(String openBank) {
|
||||
this.openBank = openBank;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return companyName == null ? "" : companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getCompanyCode() {
|
||||
return companyCode == null ? "" : companyCode;
|
||||
}
|
||||
|
||||
public void setCompanyCode(String companyCode) {
|
||||
this.companyCode = companyCode;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone == null ? "" : phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public int getCardUserType() {
|
||||
return cardUserType;
|
||||
}
|
||||
|
||||
public void setCardUserType(int cardUserType) {
|
||||
this.cardUserType = cardUserType;
|
||||
}
|
||||
|
||||
public String getUserCompany() {
|
||||
return userCompany == null ? "" : userCompany;
|
||||
}
|
||||
|
||||
public void setUserCompany(String userCompany) {
|
||||
this.userCompany = userCompany;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/7 14:28
|
||||
* @description:基础bean
|
||||
*/
|
||||
public class BaseBean {
|
||||
|
||||
private int res;
|
||||
private int code;
|
||||
private boolean success;
|
||||
private String msg;
|
||||
private Object 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 Object getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(Object data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,173 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/9/6 10:23
|
||||
* @description:
|
||||
*/
|
||||
public class BusinessBean {
|
||||
|
||||
private int code;
|
||||
private String msg;
|
||||
private DataDTO data;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
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 openshopid;
|
||||
private String name;
|
||||
private String branch_name;
|
||||
private String city;
|
||||
private String address;
|
||||
private List<String> categories;
|
||||
private double avg_rating;
|
||||
private int ugc_count;
|
||||
private int avg_price;
|
||||
private double taste;
|
||||
private double decoration;
|
||||
private double service;
|
||||
private String photo_url;
|
||||
private String business_url;
|
||||
|
||||
public String getOpenshopid() {
|
||||
return openshopid == null ? "" : openshopid;
|
||||
}
|
||||
|
||||
public void setOpenshopid(String openshopid) {
|
||||
this.openshopid = openshopid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getBranch_name() {
|
||||
return branch_name == null ? "" : branch_name;
|
||||
}
|
||||
|
||||
public void setBranch_name(String branch_name) {
|
||||
this.branch_name = branch_name;
|
||||
}
|
||||
|
||||
public String getCity() {
|
||||
return city == null ? "" : city;
|
||||
}
|
||||
|
||||
public void setCity(String city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public List<String> getCategories() {
|
||||
if (categories == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return categories;
|
||||
}
|
||||
|
||||
public void setCategories(List<String> categories) {
|
||||
this.categories = categories;
|
||||
}
|
||||
|
||||
public double getAvg_rating() {
|
||||
return avg_rating;
|
||||
}
|
||||
|
||||
public void setAvg_rating(double avg_rating) {
|
||||
this.avg_rating = avg_rating;
|
||||
}
|
||||
|
||||
public int getUgc_count() {
|
||||
return ugc_count;
|
||||
}
|
||||
|
||||
public void setUgc_count(int ugc_count) {
|
||||
this.ugc_count = ugc_count;
|
||||
}
|
||||
|
||||
public int getAvg_price() {
|
||||
return avg_price;
|
||||
}
|
||||
|
||||
public void setAvg_price(int avg_price) {
|
||||
this.avg_price = avg_price;
|
||||
}
|
||||
|
||||
public double getTaste() {
|
||||
return taste;
|
||||
}
|
||||
|
||||
public void setTaste(double taste) {
|
||||
this.taste = taste;
|
||||
}
|
||||
|
||||
public double getDecoration() {
|
||||
return decoration;
|
||||
}
|
||||
|
||||
public void setDecoration(double decoration) {
|
||||
this.decoration = decoration;
|
||||
}
|
||||
|
||||
public double getService() {
|
||||
return service;
|
||||
}
|
||||
|
||||
public void setService(double service) {
|
||||
this.service = service;
|
||||
}
|
||||
|
||||
public String getPhoto_url() {
|
||||
return photo_url == null ? "" : photo_url;
|
||||
}
|
||||
|
||||
public void setPhoto_url(String photo_url) {
|
||||
this.photo_url = photo_url;
|
||||
}
|
||||
|
||||
public String getBusiness_url() {
|
||||
return business_url == null ? "" : business_url;
|
||||
}
|
||||
|
||||
public void setBusiness_url(String business_url) {
|
||||
this.business_url = business_url;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/9/6 10:22
|
||||
* @description:
|
||||
*/
|
||||
public class BusinessListBean {
|
||||
|
||||
private int code;
|
||||
private String msg;
|
||||
private DataDTO data;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
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 int total_count;
|
||||
private int page;
|
||||
private List<ResultsDTO> results;
|
||||
|
||||
public int getTotal_count() {
|
||||
return total_count;
|
||||
}
|
||||
|
||||
public void setTotal_count(int total_count) {
|
||||
this.total_count = total_count;
|
||||
}
|
||||
|
||||
public int getPage() {
|
||||
return page;
|
||||
}
|
||||
|
||||
public void setPage(int page) {
|
||||
this.page = page;
|
||||
}
|
||||
|
||||
public List<ResultsDTO> getResults() {
|
||||
if (results == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return results;
|
||||
}
|
||||
|
||||
public void setResults(List<ResultsDTO> results) {
|
||||
this.results = results;
|
||||
}
|
||||
|
||||
public static class ResultsDTO {
|
||||
private String openshopid;
|
||||
private String name;
|
||||
private String branch_name;
|
||||
|
||||
public String getOpenshopid() {
|
||||
return openshopid == null ? "" : openshopid;
|
||||
}
|
||||
|
||||
public void setOpenshopid(String openshopid) {
|
||||
this.openshopid = openshopid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getBranch_name() {
|
||||
return branch_name == null ? "" : branch_name;
|
||||
}
|
||||
|
||||
public void setBranch_name(String branch_name) {
|
||||
this.branch_name = branch_name;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,323 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/4 14:24
|
||||
* @description:车辆信息详情实体类
|
||||
*/
|
||||
public class CarDelBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private int res;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getRes() {
|
||||
return res;
|
||||
}
|
||||
|
||||
public void setRes(int res) {
|
||||
this.res = res;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private int auditStatus;
|
||||
private String backImage;
|
||||
private String carImage;
|
||||
private String carNumber;
|
||||
private String frontImage;
|
||||
private int isTrailer;
|
||||
private boolean needRoad;
|
||||
private String nfcId;
|
||||
private String owner;
|
||||
private String roadLicense;
|
||||
private String roadLicensePhoto;
|
||||
private String roadLicenseSend;
|
||||
private String roadLicenseValidity;
|
||||
private String threeImage;
|
||||
private TrailerResVoDTO trailerResVo;
|
||||
private String type;
|
||||
private String vehicleNumber;
|
||||
private String nfcImage;
|
||||
private String registerImage;
|
||||
private String registerNo;
|
||||
private String carEnergyTypValue;
|
||||
private String carPlateColorValue;
|
||||
|
||||
public String getCarPlateColorValue() {
|
||||
return carPlateColorValue;
|
||||
}
|
||||
|
||||
public void setCarPlateColorValue(String carPlateColorValue) {
|
||||
this.carPlateColorValue = carPlateColorValue;
|
||||
}
|
||||
|
||||
public String getCarEnergyTypValue() {
|
||||
return carEnergyTypValue;
|
||||
}
|
||||
|
||||
public void setCarEnergyTypValue(String carEnergyTypValue) {
|
||||
this.carEnergyTypValue = carEnergyTypValue;
|
||||
}
|
||||
|
||||
public String getRegisterNo() {
|
||||
return registerNo;
|
||||
}
|
||||
|
||||
public void setRegisterNo(String registerNo) {
|
||||
this.registerNo = registerNo;
|
||||
}
|
||||
|
||||
public String getNfcImage() {
|
||||
return nfcImage == null ? "" : nfcImage;
|
||||
}
|
||||
|
||||
public void setNfcImage(String nfcImage) {
|
||||
this.nfcImage = nfcImage;
|
||||
}
|
||||
|
||||
public String getRegisterImage() {
|
||||
return registerImage == null ? "" : registerImage;
|
||||
}
|
||||
|
||||
public void setRegisterImage(String registerImage) {
|
||||
this.registerImage = registerImage;
|
||||
}
|
||||
|
||||
public int getAuditStatus() {
|
||||
return auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(int auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public String getBackImage() {
|
||||
return backImage == null ? "" : backImage;
|
||||
}
|
||||
|
||||
public void setBackImage(String backImage) {
|
||||
this.backImage = backImage;
|
||||
}
|
||||
|
||||
public String getCarImage() {
|
||||
return carImage == null ? "" : carImage;
|
||||
}
|
||||
|
||||
public void setCarImage(String carImage) {
|
||||
this.carImage = carImage;
|
||||
}
|
||||
|
||||
public String getCarNumber() {
|
||||
return carNumber == null ? "" : carNumber;
|
||||
}
|
||||
|
||||
public void setCarNumber(String carNumber) {
|
||||
this.carNumber = carNumber;
|
||||
}
|
||||
|
||||
public String getFrontImage() {
|
||||
return frontImage == null ? "" : frontImage;
|
||||
}
|
||||
|
||||
public void setFrontImage(String frontImage) {
|
||||
this.frontImage = frontImage;
|
||||
}
|
||||
|
||||
public int getIsTrailer() {
|
||||
return isTrailer;
|
||||
}
|
||||
|
||||
public void setIsTrailer(int isTrailer) {
|
||||
this.isTrailer = isTrailer;
|
||||
}
|
||||
|
||||
public boolean isNeedRoad() {
|
||||
return needRoad;
|
||||
}
|
||||
|
||||
public void setNeedRoad(boolean needRoad) {
|
||||
this.needRoad = needRoad;
|
||||
}
|
||||
|
||||
public String getNfcId() {
|
||||
return nfcId == null ? "" : nfcId;
|
||||
}
|
||||
|
||||
public void setNfcId(String nfcId) {
|
||||
this.nfcId = nfcId;
|
||||
}
|
||||
|
||||
public String getOwner() {
|
||||
return owner == null ? "" : owner;
|
||||
}
|
||||
|
||||
public void setOwner(String owner) {
|
||||
this.owner = owner;
|
||||
}
|
||||
|
||||
public String getRoadLicense() {
|
||||
return roadLicense == null ? "" : roadLicense;
|
||||
}
|
||||
|
||||
public void setRoadLicense(String roadLicense) {
|
||||
this.roadLicense = roadLicense;
|
||||
}
|
||||
|
||||
public String getRoadLicensePhoto() {
|
||||
return roadLicensePhoto == null ? "" : roadLicensePhoto;
|
||||
}
|
||||
|
||||
public void setRoadLicensePhoto(String roadLicensePhoto) {
|
||||
this.roadLicensePhoto = roadLicensePhoto;
|
||||
}
|
||||
|
||||
public String getRoadLicenseSend() {
|
||||
return roadLicenseSend == null ? "" : roadLicenseSend;
|
||||
}
|
||||
|
||||
public void setRoadLicenseSend(String roadLicenseSend) {
|
||||
this.roadLicenseSend = roadLicenseSend;
|
||||
}
|
||||
|
||||
public String getRoadLicenseValidity() {
|
||||
return roadLicenseValidity == null ? "" : roadLicenseValidity;
|
||||
}
|
||||
|
||||
public void setRoadLicenseValidity(String roadLicenseValidity) {
|
||||
this.roadLicenseValidity = roadLicenseValidity;
|
||||
}
|
||||
|
||||
public String getThreeImage() {
|
||||
return threeImage == null ? "" : threeImage;
|
||||
}
|
||||
|
||||
public void setThreeImage(String threeImage) {
|
||||
this.threeImage = threeImage;
|
||||
}
|
||||
|
||||
public TrailerResVoDTO getTrailerResVo() {
|
||||
return trailerResVo;
|
||||
}
|
||||
|
||||
public void setTrailerResVo(TrailerResVoDTO trailerResVo) {
|
||||
this.trailerResVo = trailerResVo;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type == null ? "" : type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getVehicleNumber() {
|
||||
return vehicleNumber == null ? "" : vehicleNumber;
|
||||
}
|
||||
|
||||
public void setVehicleNumber(String vehicleNumber) {
|
||||
this.vehicleNumber = vehicleNumber;
|
||||
}
|
||||
|
||||
public static class TrailerResVoDTO {
|
||||
private String backImage;
|
||||
private String carNumber;
|
||||
private String frontImage;
|
||||
private String owner;
|
||||
private String threeImage;
|
||||
private String type;
|
||||
private String vehicleNumber;
|
||||
|
||||
public String getBackImage() {
|
||||
return backImage == null ? "" : backImage;
|
||||
}
|
||||
|
||||
public void setBackImage(String backImage) {
|
||||
this.backImage = backImage;
|
||||
}
|
||||
|
||||
public String getCarNumber() {
|
||||
return carNumber == null ? "" : carNumber;
|
||||
}
|
||||
|
||||
public void setCarNumber(String carNumber) {
|
||||
this.carNumber = carNumber;
|
||||
}
|
||||
|
||||
public String getFrontImage() {
|
||||
return frontImage == null ? "" : frontImage;
|
||||
}
|
||||
|
||||
public void setFrontImage(String frontImage) {
|
||||
this.frontImage = frontImage;
|
||||
}
|
||||
|
||||
public String getOwner() {
|
||||
return owner == null ? "" : owner;
|
||||
}
|
||||
|
||||
public void setOwner(String owner) {
|
||||
this.owner = owner;
|
||||
}
|
||||
|
||||
public String getThreeImage() {
|
||||
return threeImage == null ? "" : threeImage;
|
||||
}
|
||||
|
||||
public void setThreeImage(String threeImage) {
|
||||
this.threeImage = threeImage;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type == null ? "" : type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getVehicleNumber() {
|
||||
return vehicleNumber == null ? "" : vehicleNumber;
|
||||
}
|
||||
|
||||
public void setVehicleNumber(String vehicleNumber) {
|
||||
this.vehicleNumber = vehicleNumber;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,138 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/4 14:24
|
||||
* @description:车辆列表实体类
|
||||
*/
|
||||
|
||||
public class CarListBean {
|
||||
|
||||
private int res;
|
||||
private int code;
|
||||
private boolean success;
|
||||
private String msg;
|
||||
private List<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 List<DataDTO> getData() {
|
||||
if (data == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(List<DataDTO> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private String carNumber;
|
||||
private String carId;
|
||||
private String type;
|
||||
private Object carImage;
|
||||
private String owner;
|
||||
private String vehicleNumber;
|
||||
private int auditStatus;
|
||||
private String drivingLicenseValidity;
|
||||
|
||||
public String getCarNumber() {
|
||||
return carNumber == null ? "" : carNumber;
|
||||
}
|
||||
|
||||
public void setCarNumber(String carNumber) {
|
||||
this.carNumber = carNumber;
|
||||
}
|
||||
|
||||
public String getCarId() {
|
||||
return carId == null ? "" : carId;
|
||||
}
|
||||
|
||||
public void setCarId(String carId) {
|
||||
this.carId = carId;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type == null ? "" : type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public Object getCarImage() {
|
||||
return carImage;
|
||||
}
|
||||
|
||||
public void setCarImage(Object carImage) {
|
||||
this.carImage = carImage;
|
||||
}
|
||||
|
||||
public String getOwner() {
|
||||
return owner == null ? "" : owner;
|
||||
}
|
||||
|
||||
public void setOwner(String owner) {
|
||||
this.owner = owner;
|
||||
}
|
||||
|
||||
public String getVehicleNumber() {
|
||||
return vehicleNumber == null ? "" : vehicleNumber;
|
||||
}
|
||||
|
||||
public void setVehicleNumber(String vehicleNumber) {
|
||||
this.vehicleNumber = vehicleNumber;
|
||||
}
|
||||
|
||||
public int getAuditStatus() {
|
||||
return auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(int auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public String getDrivingLicenseValidity() {
|
||||
return drivingLicenseValidity == null ? "" : drivingLicenseValidity;
|
||||
}
|
||||
|
||||
public void setDrivingLicenseValidity(String drivingLicenseValidity) {
|
||||
this.drivingLicenseValidity = drivingLicenseValidity;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/25 20:04
|
||||
* @description:
|
||||
*/
|
||||
public class CarZhengBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private int res;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getRes() {
|
||||
return res;
|
||||
}
|
||||
|
||||
public void setRes(int res) {
|
||||
this.res = res;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private int carId;
|
||||
|
||||
public int getCarId() {
|
||||
return carId;
|
||||
}
|
||||
|
||||
public void setCarId(int carId) {
|
||||
this.carId = carId;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/9/26 17:44
|
||||
* @description:
|
||||
*/
|
||||
public class ChangeRecordBean {
|
||||
|
||||
private int code;
|
||||
private List<DataDTO> data;
|
||||
private String msg;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public List<DataDTO> getData() {
|
||||
if (data == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(List<DataDTO> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
|
||||
private String balanceMonty;
|
||||
private String createTime;
|
||||
private String money;
|
||||
private String name;
|
||||
private String status;
|
||||
private String gldYldAmt;
|
||||
private String charges;
|
||||
|
||||
public String getGldYldAmt() {
|
||||
return gldYldAmt;
|
||||
}
|
||||
|
||||
public void setGldYldAmt(String gldYldAmt) {
|
||||
this.gldYldAmt = gldYldAmt;
|
||||
}
|
||||
|
||||
public String getCharges() {
|
||||
return charges;
|
||||
}
|
||||
|
||||
public void setCharges(String charges) {
|
||||
this.charges = charges;
|
||||
}
|
||||
|
||||
public String getBalanceMonty() {
|
||||
return balanceMonty == null ? "" : balanceMonty;
|
||||
}
|
||||
|
||||
public void setBalanceMonty(String balanceMonty) {
|
||||
this.balanceMonty = balanceMonty;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime == null ? "" : createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getMoney() {
|
||||
return money == null ? "" : money;
|
||||
}
|
||||
|
||||
public void setMoney(String money) {
|
||||
this.money = money;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status == null ? "" : status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,155 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/30 19:48
|
||||
* @description:
|
||||
*/
|
||||
public class ComplaintBean {
|
||||
|
||||
private int res;
|
||||
private int code;
|
||||
private boolean success;
|
||||
private String msg;
|
||||
private List<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 List<DataDTO> getData() {
|
||||
if (data == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(List<DataDTO> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private int waybillId;
|
||||
private String content;
|
||||
private Object listImgUrl;
|
||||
private int type;
|
||||
private int status;
|
||||
private String handleContent;
|
||||
private int handleUser;
|
||||
private String handleTime;
|
||||
private int appraiserId;
|
||||
private Object folderId;
|
||||
|
||||
public int getWaybillId() {
|
||||
return waybillId;
|
||||
}
|
||||
|
||||
public void setWaybillId(int waybillId) {
|
||||
this.waybillId = waybillId;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content == null ? "" : content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public Object getListImgUrl() {
|
||||
return listImgUrl;
|
||||
}
|
||||
|
||||
public void setListImgUrl(Object listImgUrl) {
|
||||
this.listImgUrl = listImgUrl;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getHandleContent() {
|
||||
return handleContent == null ? "" : handleContent;
|
||||
}
|
||||
|
||||
public void setHandleContent(String handleContent) {
|
||||
this.handleContent = handleContent;
|
||||
}
|
||||
|
||||
public int getHandleUser() {
|
||||
return handleUser;
|
||||
}
|
||||
|
||||
public void setHandleUser(int handleUser) {
|
||||
this.handleUser = handleUser;
|
||||
}
|
||||
|
||||
public String getHandleTime() {
|
||||
return handleTime == null ? "" : handleTime;
|
||||
}
|
||||
|
||||
public void setHandleTime(String handleTime) {
|
||||
this.handleTime = handleTime;
|
||||
}
|
||||
|
||||
public int getAppraiserId() {
|
||||
return appraiserId;
|
||||
}
|
||||
|
||||
public void setAppraiserId(int appraiserId) {
|
||||
this.appraiserId = appraiserId;
|
||||
}
|
||||
|
||||
public Object getFolderId() {
|
||||
return folderId;
|
||||
}
|
||||
|
||||
public void setFolderId(Object folderId) {
|
||||
this.folderId = folderId;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/9/11 11:53
|
||||
* @description:
|
||||
*/
|
||||
public class ConfigBean {
|
||||
|
||||
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 serviceMobile;
|
||||
private String privateUrl;
|
||||
private String userUrl;
|
||||
private String contractUrl;
|
||||
private String startImageUrl;
|
||||
private String securityUrl;
|
||||
|
||||
public String getServiceMobile() {
|
||||
return serviceMobile == null ? "" : serviceMobile;
|
||||
}
|
||||
|
||||
public void setServiceMobile(String serviceMobile) {
|
||||
this.serviceMobile = serviceMobile;
|
||||
}
|
||||
|
||||
public String getPrivateUrl() {
|
||||
return privateUrl == null ? "" : privateUrl;
|
||||
}
|
||||
|
||||
public void setPrivateUrl(String privateUrl) {
|
||||
this.privateUrl = privateUrl;
|
||||
}
|
||||
|
||||
public String getUserUrl() {
|
||||
return userUrl == null ? "" : userUrl;
|
||||
}
|
||||
|
||||
public void setUserUrl(String userUrl) {
|
||||
this.userUrl = userUrl;
|
||||
}
|
||||
|
||||
public String getContractUrl() {
|
||||
return contractUrl == null ? "" : contractUrl;
|
||||
}
|
||||
|
||||
public void setContractUrl(String contractUrl) {
|
||||
this.contractUrl = contractUrl;
|
||||
}
|
||||
|
||||
public String getStartImageUrl() {
|
||||
return startImageUrl == null ? "" : startImageUrl;
|
||||
}
|
||||
|
||||
public void setStartImageUrl(String startImageUrl) {
|
||||
this.startImageUrl = startImageUrl;
|
||||
}
|
||||
|
||||
public String getSecurityUrl() {
|
||||
return securityUrl == null ? "" : securityUrl;
|
||||
}
|
||||
|
||||
public void setSecurityUrl(String securityUrl) {
|
||||
this.securityUrl = securityUrl;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @ClassName ConfigRecordBean
|
||||
* @Author 用户
|
||||
* @Date 2022/8/2 16:53
|
||||
* @Description TODO
|
||||
*/
|
||||
public class ConfigRecordBean {
|
||||
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 chargeRate;
|
||||
private String createTime;
|
||||
private String id;
|
||||
private String minCharge;
|
||||
private String chargeNum;
|
||||
private String amount;
|
||||
|
||||
public String getAmount() {
|
||||
return amount;
|
||||
}
|
||||
|
||||
public void setAmount(String amount) {
|
||||
this.amount = amount;
|
||||
}
|
||||
|
||||
public String getChargeNum() {
|
||||
return chargeNum;
|
||||
}
|
||||
|
||||
public void setChargeNum(String chargeNum) {
|
||||
this.chargeNum = chargeNum;
|
||||
}
|
||||
|
||||
public String getChargeRate() {
|
||||
return chargeRate;
|
||||
}
|
||||
|
||||
public void setChargeRate(String chargeRate) {
|
||||
this.chargeRate = chargeRate;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getMinCharge() {
|
||||
return minCharge;
|
||||
}
|
||||
|
||||
public void setMinCharge(String minCharge) {
|
||||
this.minCharge = minCharge;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/9/3 16:28
|
||||
* @description:
|
||||
*/
|
||||
public class ContractsBean {
|
||||
|
||||
private int code;
|
||||
private String msg;
|
||||
private boolean success;
|
||||
private DataDTO data;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private String bidsSnglFlgCd;
|
||||
private String childAcctNo;
|
||||
|
||||
public String getBidsSnglFlgCd() {
|
||||
return bidsSnglFlgCd == null ? "" : bidsSnglFlgCd;
|
||||
}
|
||||
|
||||
public void setBidsSnglFlgCd(String bidsSnglFlgCd) {
|
||||
this.bidsSnglFlgCd = bidsSnglFlgCd;
|
||||
}
|
||||
|
||||
public String getChildAcctNo() {
|
||||
return childAcctNo == null ? "" : childAcctNo;
|
||||
}
|
||||
|
||||
public void setChildAcctNo(String childAcctNo) {
|
||||
this.childAcctNo = childAcctNo;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import com.github.gzuliyujiang.wheelview.contract.TextProvider;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @ClassName DicBean
|
||||
* @Author 用户
|
||||
* @Date 2022/4/24 9:31
|
||||
* @Description TODO
|
||||
*/
|
||||
public class DicBean implements Serializable {
|
||||
private int code;
|
||||
private ArrayList<DataDTO> data;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public ArrayList<DataDTO> getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(ArrayList<DataDTO> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public static class DataDTO implements TextProvider {
|
||||
private String name;
|
||||
private String type;
|
||||
private String value;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String provideText() {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,872 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
public class DriverAuthDataBean {
|
||||
|
||||
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 int id;
|
||||
private int userId;
|
||||
private Object contactName;
|
||||
private String contactPhone;
|
||||
private String idcard;
|
||||
private String idcardValidity;
|
||||
private String dirverAllowType;
|
||||
private int idcardPhoto;
|
||||
private int idcardBackPhoto;
|
||||
private Object idcardPhotoHold;
|
||||
private String idcardAddress;
|
||||
private String idcardName;
|
||||
private int idcardSex;
|
||||
private int idCardStatus;
|
||||
private int driverLicenseStatus;
|
||||
private int qualificationCertificateStatus;
|
||||
private String idCardReason;
|
||||
private String driverLicenseReason;
|
||||
private String qualificationCertificateReason;
|
||||
private Object qualificationCertificate;
|
||||
private Object qualificationCertificateValidity;
|
||||
private Object qualificationCertificatePhoto;
|
||||
private String driverLicense;
|
||||
private String driverLicenseValidity;
|
||||
private String archivesName;
|
||||
private String driverLicenseName;
|
||||
private String allowType;
|
||||
private String driverLicenseFirstTime;
|
||||
private int driverLicensePhoto;
|
||||
private int driverLicenseBackPhoto;
|
||||
private Object driverLicenseType;
|
||||
private Object driverPhoto;
|
||||
private Object license;
|
||||
private Object licenseValidity;
|
||||
private Object licensePhoto;
|
||||
private int auditStatus;
|
||||
private Object reason;
|
||||
private String applyTime;
|
||||
private String auditTime;
|
||||
private Object isCarOwner;
|
||||
private Object carOwnerName;
|
||||
private Object carOwnerIdcard;
|
||||
private Object carOwnerIdcardValidity;
|
||||
private Object carOwnerIdcardPhoto;
|
||||
private Object carOwnerIdcardPhotoBack;
|
||||
private Object carOwnerIdcardPhotoHold;
|
||||
private Object carOwnerBankcardNumber;
|
||||
private Object carOwnerBankcardAddress;
|
||||
private Object carOwnerBankcardPhoto;
|
||||
private Object driverLicenseFrom;
|
||||
private Object driverLicenseIssuingOrg;
|
||||
private int reportStatus;
|
||||
private int disabled;
|
||||
private Object bindStatus;
|
||||
private Object bindCarIds;
|
||||
private Object bindCarList;
|
||||
private Object bindCars;
|
||||
private String rname;
|
||||
private String registerPhone;
|
||||
private String loginPhone;
|
||||
private Object headportrait;
|
||||
private String headportraitUrl;
|
||||
private Object headportraitInfo;
|
||||
private int positiveRate;
|
||||
private int allWaybillCount;
|
||||
private Object updatePhoneTime;
|
||||
private String registerTime;
|
||||
private Object idcardPhotoInfo;
|
||||
private String idcardPhotoUrl;
|
||||
private Object idcardPhotoBackInfo;
|
||||
private String idcardPhotoBackUrl;
|
||||
private Object idcardPhotoHoldInfo;
|
||||
private String idcardPhotoHoldUrl;
|
||||
private Object qualificationCertificatePhotoInfo;
|
||||
private String qualificationCertificatePhotoUrl;
|
||||
private Object driverLicensePhotoInfo;
|
||||
private String driverLicensePhotoUrl;
|
||||
private Object driverPhotoInfo;
|
||||
private String driverPhotoUrl;
|
||||
private Object licensePhotoInfo;
|
||||
private String licensePhotoUrl;
|
||||
private Object carOwnerIdcardPhotoInfo;
|
||||
private String carOwnerIdcardPhotoUrl;
|
||||
private Object carOwnerIdcardPhotoBackInfo;
|
||||
private String carOwnerIdcardPhotoBackUrl;
|
||||
private Object carOwnerIdcardPhotoHoldInfo;
|
||||
private String carOwnerIdcardPhotoHoldUrl;
|
||||
private Object carOwnerBankcardPhotoInfo;
|
||||
private String carOwnerBankcardPhotoUrl;
|
||||
private Object mbindStatus;
|
||||
private Object mreason;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(int userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Object getContactName() {
|
||||
return contactName;
|
||||
}
|
||||
|
||||
public void setContactName(Object contactName) {
|
||||
this.contactName = contactName;
|
||||
}
|
||||
|
||||
public String getContactPhone() {
|
||||
return contactPhone == null ? "" : contactPhone;
|
||||
}
|
||||
|
||||
public void setContactPhone(String contactPhone) {
|
||||
this.contactPhone = contactPhone;
|
||||
}
|
||||
|
||||
public String getIdcard() {
|
||||
return idcard == null ? "" : idcard;
|
||||
}
|
||||
|
||||
public void setIdcard(String idcard) {
|
||||
this.idcard = idcard;
|
||||
}
|
||||
|
||||
public String getIdcardValidity() {
|
||||
return idcardValidity == null ? "" : idcardValidity;
|
||||
}
|
||||
|
||||
public void setIdcardValidity(String idcardValidity) {
|
||||
this.idcardValidity = idcardValidity;
|
||||
}
|
||||
|
||||
public String getDirverAllowType() {
|
||||
return dirverAllowType == null ? "" : dirverAllowType;
|
||||
}
|
||||
|
||||
public void setDirverAllowType(String dirverAllowType) {
|
||||
this.dirverAllowType = dirverAllowType;
|
||||
}
|
||||
|
||||
public int getIdcardPhoto() {
|
||||
return idcardPhoto;
|
||||
}
|
||||
|
||||
public void setIdcardPhoto(int idcardPhoto) {
|
||||
this.idcardPhoto = idcardPhoto;
|
||||
}
|
||||
|
||||
public int getIdcardBackPhoto() {
|
||||
return idcardBackPhoto;
|
||||
}
|
||||
|
||||
public void setIdcardBackPhoto(int idcardBackPhoto) {
|
||||
this.idcardBackPhoto = idcardBackPhoto;
|
||||
}
|
||||
|
||||
public Object getIdcardPhotoHold() {
|
||||
return idcardPhotoHold;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoHold(Object idcardPhotoHold) {
|
||||
this.idcardPhotoHold = idcardPhotoHold;
|
||||
}
|
||||
|
||||
public String getIdcardAddress() {
|
||||
return idcardAddress == null ? "" : idcardAddress;
|
||||
}
|
||||
|
||||
public void setIdcardAddress(String idcardAddress) {
|
||||
this.idcardAddress = idcardAddress;
|
||||
}
|
||||
|
||||
public String getIdcardName() {
|
||||
return idcardName == null ? "" : idcardName;
|
||||
}
|
||||
|
||||
public void setIdcardName(String idcardName) {
|
||||
this.idcardName = idcardName;
|
||||
}
|
||||
|
||||
public int getIdcardSex() {
|
||||
return idcardSex;
|
||||
}
|
||||
|
||||
public void setIdcardSex(int idcardSex) {
|
||||
this.idcardSex = idcardSex;
|
||||
}
|
||||
|
||||
public int getIdCardStatus() {
|
||||
return idCardStatus;
|
||||
}
|
||||
|
||||
public void setIdCardStatus(int idCardStatus) {
|
||||
this.idCardStatus = idCardStatus;
|
||||
}
|
||||
|
||||
public int getDriverLicenseStatus() {
|
||||
return driverLicenseStatus;
|
||||
}
|
||||
|
||||
public void setDriverLicenseStatus(int driverLicenseStatus) {
|
||||
this.driverLicenseStatus = driverLicenseStatus;
|
||||
}
|
||||
|
||||
public int getQualificationCertificateStatus() {
|
||||
return qualificationCertificateStatus;
|
||||
}
|
||||
|
||||
public void setQualificationCertificateStatus(int qualificationCertificateStatus) {
|
||||
this.qualificationCertificateStatus = qualificationCertificateStatus;
|
||||
}
|
||||
|
||||
public String getIdCardReason() {
|
||||
return idCardReason == null ? "" : idCardReason;
|
||||
}
|
||||
|
||||
public void setIdCardReason(String idCardReason) {
|
||||
this.idCardReason = idCardReason;
|
||||
}
|
||||
|
||||
public String getDriverLicenseReason() {
|
||||
return driverLicenseReason == null ? "" : driverLicenseReason;
|
||||
}
|
||||
|
||||
public void setDriverLicenseReason(String driverLicenseReason) {
|
||||
this.driverLicenseReason = driverLicenseReason;
|
||||
}
|
||||
|
||||
public String getQualificationCertificateReason() {
|
||||
return qualificationCertificateReason == null ? "" : qualificationCertificateReason;
|
||||
}
|
||||
|
||||
public void setQualificationCertificateReason(String qualificationCertificateReason) {
|
||||
this.qualificationCertificateReason = qualificationCertificateReason;
|
||||
}
|
||||
|
||||
public Object getQualificationCertificate() {
|
||||
return qualificationCertificate;
|
||||
}
|
||||
|
||||
public void setQualificationCertificate(Object qualificationCertificate) {
|
||||
this.qualificationCertificate = qualificationCertificate;
|
||||
}
|
||||
|
||||
public Object getQualificationCertificateValidity() {
|
||||
return qualificationCertificateValidity;
|
||||
}
|
||||
|
||||
public void setQualificationCertificateValidity(Object qualificationCertificateValidity) {
|
||||
this.qualificationCertificateValidity = qualificationCertificateValidity;
|
||||
}
|
||||
|
||||
public Object getQualificationCertificatePhoto() {
|
||||
return qualificationCertificatePhoto;
|
||||
}
|
||||
|
||||
public void setQualificationCertificatePhoto(Object qualificationCertificatePhoto) {
|
||||
this.qualificationCertificatePhoto = qualificationCertificatePhoto;
|
||||
}
|
||||
|
||||
public String getDriverLicense() {
|
||||
return driverLicense == null ? "" : driverLicense;
|
||||
}
|
||||
|
||||
public void setDriverLicense(String driverLicense) {
|
||||
this.driverLicense = driverLicense;
|
||||
}
|
||||
|
||||
public String getDriverLicenseValidity() {
|
||||
return driverLicenseValidity == null ? "" : driverLicenseValidity;
|
||||
}
|
||||
|
||||
public void setDriverLicenseValidity(String driverLicenseValidity) {
|
||||
this.driverLicenseValidity = driverLicenseValidity;
|
||||
}
|
||||
|
||||
public String getArchivesName() {
|
||||
return archivesName == null ? "" : archivesName;
|
||||
}
|
||||
|
||||
public void setArchivesName(String archivesName) {
|
||||
this.archivesName = archivesName;
|
||||
}
|
||||
|
||||
public String getDriverLicenseName() {
|
||||
return driverLicenseName == null ? "" : driverLicenseName;
|
||||
}
|
||||
|
||||
public void setDriverLicenseName(String driverLicenseName) {
|
||||
this.driverLicenseName = driverLicenseName;
|
||||
}
|
||||
|
||||
public String getAllowType() {
|
||||
return allowType == null ? "" : allowType;
|
||||
}
|
||||
|
||||
public void setAllowType(String allowType) {
|
||||
this.allowType = allowType;
|
||||
}
|
||||
|
||||
public String getDriverLicenseFirstTime() {
|
||||
return driverLicenseFirstTime == null ? "" : driverLicenseFirstTime;
|
||||
}
|
||||
|
||||
public void setDriverLicenseFirstTime(String driverLicenseFirstTime) {
|
||||
this.driverLicenseFirstTime = driverLicenseFirstTime;
|
||||
}
|
||||
|
||||
public int getDriverLicensePhoto() {
|
||||
return driverLicensePhoto;
|
||||
}
|
||||
|
||||
public void setDriverLicensePhoto(int driverLicensePhoto) {
|
||||
this.driverLicensePhoto = driverLicensePhoto;
|
||||
}
|
||||
|
||||
public int getDriverLicenseBackPhoto() {
|
||||
return driverLicenseBackPhoto;
|
||||
}
|
||||
|
||||
public void setDriverLicenseBackPhoto(int driverLicenseBackPhoto) {
|
||||
this.driverLicenseBackPhoto = driverLicenseBackPhoto;
|
||||
}
|
||||
|
||||
public Object getDriverLicenseType() {
|
||||
return driverLicenseType;
|
||||
}
|
||||
|
||||
public void setDriverLicenseType(Object driverLicenseType) {
|
||||
this.driverLicenseType = driverLicenseType;
|
||||
}
|
||||
|
||||
public Object getDriverPhoto() {
|
||||
return driverPhoto;
|
||||
}
|
||||
|
||||
public void setDriverPhoto(Object driverPhoto) {
|
||||
this.driverPhoto = driverPhoto;
|
||||
}
|
||||
|
||||
public Object getLicense() {
|
||||
return license;
|
||||
}
|
||||
|
||||
public void setLicense(Object license) {
|
||||
this.license = license;
|
||||
}
|
||||
|
||||
public Object getLicenseValidity() {
|
||||
return licenseValidity;
|
||||
}
|
||||
|
||||
public void setLicenseValidity(Object licenseValidity) {
|
||||
this.licenseValidity = licenseValidity;
|
||||
}
|
||||
|
||||
public Object getLicensePhoto() {
|
||||
return licensePhoto;
|
||||
}
|
||||
|
||||
public void setLicensePhoto(Object licensePhoto) {
|
||||
this.licensePhoto = licensePhoto;
|
||||
}
|
||||
|
||||
public int getAuditStatus() {
|
||||
return auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(int auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public Object getReason() {
|
||||
return reason;
|
||||
}
|
||||
|
||||
public void setReason(Object reason) {
|
||||
this.reason = reason;
|
||||
}
|
||||
|
||||
public String getApplyTime() {
|
||||
return applyTime == null ? "" : applyTime;
|
||||
}
|
||||
|
||||
public void setApplyTime(String applyTime) {
|
||||
this.applyTime = applyTime;
|
||||
}
|
||||
|
||||
public String getAuditTime() {
|
||||
return auditTime == null ? "" : auditTime;
|
||||
}
|
||||
|
||||
public void setAuditTime(String auditTime) {
|
||||
this.auditTime = auditTime;
|
||||
}
|
||||
|
||||
public Object getIsCarOwner() {
|
||||
return isCarOwner;
|
||||
}
|
||||
|
||||
public void setIsCarOwner(Object isCarOwner) {
|
||||
this.isCarOwner = isCarOwner;
|
||||
}
|
||||
|
||||
public Object getCarOwnerName() {
|
||||
return carOwnerName;
|
||||
}
|
||||
|
||||
public void setCarOwnerName(Object carOwnerName) {
|
||||
this.carOwnerName = carOwnerName;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcard() {
|
||||
return carOwnerIdcard;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcard(Object carOwnerIdcard) {
|
||||
this.carOwnerIdcard = carOwnerIdcard;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcardValidity() {
|
||||
return carOwnerIdcardValidity;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardValidity(Object carOwnerIdcardValidity) {
|
||||
this.carOwnerIdcardValidity = carOwnerIdcardValidity;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcardPhoto() {
|
||||
return carOwnerIdcardPhoto;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhoto(Object carOwnerIdcardPhoto) {
|
||||
this.carOwnerIdcardPhoto = carOwnerIdcardPhoto;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcardPhotoBack() {
|
||||
return carOwnerIdcardPhotoBack;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoBack(Object carOwnerIdcardPhotoBack) {
|
||||
this.carOwnerIdcardPhotoBack = carOwnerIdcardPhotoBack;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcardPhotoHold() {
|
||||
return carOwnerIdcardPhotoHold;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoHold(Object carOwnerIdcardPhotoHold) {
|
||||
this.carOwnerIdcardPhotoHold = carOwnerIdcardPhotoHold;
|
||||
}
|
||||
|
||||
public Object getCarOwnerBankcardNumber() {
|
||||
return carOwnerBankcardNumber;
|
||||
}
|
||||
|
||||
public void setCarOwnerBankcardNumber(Object carOwnerBankcardNumber) {
|
||||
this.carOwnerBankcardNumber = carOwnerBankcardNumber;
|
||||
}
|
||||
|
||||
public Object getCarOwnerBankcardAddress() {
|
||||
return carOwnerBankcardAddress;
|
||||
}
|
||||
|
||||
public void setCarOwnerBankcardAddress(Object carOwnerBankcardAddress) {
|
||||
this.carOwnerBankcardAddress = carOwnerBankcardAddress;
|
||||
}
|
||||
|
||||
public Object getCarOwnerBankcardPhoto() {
|
||||
return carOwnerBankcardPhoto;
|
||||
}
|
||||
|
||||
public void setCarOwnerBankcardPhoto(Object carOwnerBankcardPhoto) {
|
||||
this.carOwnerBankcardPhoto = carOwnerBankcardPhoto;
|
||||
}
|
||||
|
||||
public Object getDriverLicenseFrom() {
|
||||
return driverLicenseFrom;
|
||||
}
|
||||
|
||||
public void setDriverLicenseFrom(Object driverLicenseFrom) {
|
||||
this.driverLicenseFrom = driverLicenseFrom;
|
||||
}
|
||||
|
||||
public Object getDriverLicenseIssuingOrg() {
|
||||
return driverLicenseIssuingOrg;
|
||||
}
|
||||
|
||||
public void setDriverLicenseIssuingOrg(Object driverLicenseIssuingOrg) {
|
||||
this.driverLicenseIssuingOrg = driverLicenseIssuingOrg;
|
||||
}
|
||||
|
||||
public int getReportStatus() {
|
||||
return reportStatus;
|
||||
}
|
||||
|
||||
public void setReportStatus(int reportStatus) {
|
||||
this.reportStatus = reportStatus;
|
||||
}
|
||||
|
||||
public int getDisabled() {
|
||||
return disabled;
|
||||
}
|
||||
|
||||
public void setDisabled(int disabled) {
|
||||
this.disabled = disabled;
|
||||
}
|
||||
|
||||
public Object getBindStatus() {
|
||||
return bindStatus;
|
||||
}
|
||||
|
||||
public void setBindStatus(Object bindStatus) {
|
||||
this.bindStatus = bindStatus;
|
||||
}
|
||||
|
||||
public Object getBindCarIds() {
|
||||
return bindCarIds;
|
||||
}
|
||||
|
||||
public void setBindCarIds(Object bindCarIds) {
|
||||
this.bindCarIds = bindCarIds;
|
||||
}
|
||||
|
||||
public Object getBindCarList() {
|
||||
return bindCarList;
|
||||
}
|
||||
|
||||
public void setBindCarList(Object bindCarList) {
|
||||
this.bindCarList = bindCarList;
|
||||
}
|
||||
|
||||
public Object getBindCars() {
|
||||
return bindCars;
|
||||
}
|
||||
|
||||
public void setBindCars(Object bindCars) {
|
||||
this.bindCars = bindCars;
|
||||
}
|
||||
|
||||
public String getRname() {
|
||||
return rname == null ? "" : rname;
|
||||
}
|
||||
|
||||
public void setRname(String rname) {
|
||||
this.rname = rname;
|
||||
}
|
||||
|
||||
public String getRegisterPhone() {
|
||||
return registerPhone == null ? "" : registerPhone;
|
||||
}
|
||||
|
||||
public void setRegisterPhone(String registerPhone) {
|
||||
this.registerPhone = registerPhone;
|
||||
}
|
||||
|
||||
public String getLoginPhone() {
|
||||
return loginPhone == null ? "" : loginPhone;
|
||||
}
|
||||
|
||||
public void setLoginPhone(String loginPhone) {
|
||||
this.loginPhone = loginPhone;
|
||||
}
|
||||
|
||||
public Object getHeadportrait() {
|
||||
return headportrait;
|
||||
}
|
||||
|
||||
public void setHeadportrait(Object headportrait) {
|
||||
this.headportrait = headportrait;
|
||||
}
|
||||
|
||||
public String getHeadportraitUrl() {
|
||||
return headportraitUrl == null ? "" : headportraitUrl;
|
||||
}
|
||||
|
||||
public void setHeadportraitUrl(String headportraitUrl) {
|
||||
this.headportraitUrl = headportraitUrl;
|
||||
}
|
||||
|
||||
public Object getHeadportraitInfo() {
|
||||
return headportraitInfo;
|
||||
}
|
||||
|
||||
public void setHeadportraitInfo(Object headportraitInfo) {
|
||||
this.headportraitInfo = headportraitInfo;
|
||||
}
|
||||
|
||||
public int getPositiveRate() {
|
||||
return positiveRate;
|
||||
}
|
||||
|
||||
public void setPositiveRate(int positiveRate) {
|
||||
this.positiveRate = positiveRate;
|
||||
}
|
||||
|
||||
public int getAllWaybillCount() {
|
||||
return allWaybillCount;
|
||||
}
|
||||
|
||||
public void setAllWaybillCount(int allWaybillCount) {
|
||||
this.allWaybillCount = allWaybillCount;
|
||||
}
|
||||
|
||||
public Object getUpdatePhoneTime() {
|
||||
return updatePhoneTime;
|
||||
}
|
||||
|
||||
public void setUpdatePhoneTime(Object updatePhoneTime) {
|
||||
this.updatePhoneTime = updatePhoneTime;
|
||||
}
|
||||
|
||||
public String getRegisterTime() {
|
||||
return registerTime == null ? "" : registerTime;
|
||||
}
|
||||
|
||||
public void setRegisterTime(String registerTime) {
|
||||
this.registerTime = registerTime;
|
||||
}
|
||||
|
||||
public Object getIdcardPhotoInfo() {
|
||||
return idcardPhotoInfo;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoInfo(Object idcardPhotoInfo) {
|
||||
this.idcardPhotoInfo = idcardPhotoInfo;
|
||||
}
|
||||
|
||||
public String getIdcardPhotoUrl() {
|
||||
return idcardPhotoUrl == null ? "" : idcardPhotoUrl;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoUrl(String idcardPhotoUrl) {
|
||||
this.idcardPhotoUrl = idcardPhotoUrl;
|
||||
}
|
||||
|
||||
public Object getIdcardPhotoBackInfo() {
|
||||
return idcardPhotoBackInfo;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoBackInfo(Object idcardPhotoBackInfo) {
|
||||
this.idcardPhotoBackInfo = idcardPhotoBackInfo;
|
||||
}
|
||||
|
||||
public String getIdcardPhotoBackUrl() {
|
||||
return idcardPhotoBackUrl == null ? "" : idcardPhotoBackUrl;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoBackUrl(String idcardPhotoBackUrl) {
|
||||
this.idcardPhotoBackUrl = idcardPhotoBackUrl;
|
||||
}
|
||||
|
||||
public Object getIdcardPhotoHoldInfo() {
|
||||
return idcardPhotoHoldInfo;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoHoldInfo(Object idcardPhotoHoldInfo) {
|
||||
this.idcardPhotoHoldInfo = idcardPhotoHoldInfo;
|
||||
}
|
||||
|
||||
public String getIdcardPhotoHoldUrl() {
|
||||
return idcardPhotoHoldUrl == null ? "" : idcardPhotoHoldUrl;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoHoldUrl(String idcardPhotoHoldUrl) {
|
||||
this.idcardPhotoHoldUrl = idcardPhotoHoldUrl;
|
||||
}
|
||||
|
||||
public Object getQualificationCertificatePhotoInfo() {
|
||||
return qualificationCertificatePhotoInfo;
|
||||
}
|
||||
|
||||
public void setQualificationCertificatePhotoInfo(Object qualificationCertificatePhotoInfo) {
|
||||
this.qualificationCertificatePhotoInfo = qualificationCertificatePhotoInfo;
|
||||
}
|
||||
|
||||
public String getQualificationCertificatePhotoUrl() {
|
||||
return qualificationCertificatePhotoUrl == null ? "" : qualificationCertificatePhotoUrl;
|
||||
}
|
||||
|
||||
public void setQualificationCertificatePhotoUrl(String qualificationCertificatePhotoUrl) {
|
||||
this.qualificationCertificatePhotoUrl = qualificationCertificatePhotoUrl;
|
||||
}
|
||||
|
||||
public Object getDriverLicensePhotoInfo() {
|
||||
return driverLicensePhotoInfo;
|
||||
}
|
||||
|
||||
public void setDriverLicensePhotoInfo(Object driverLicensePhotoInfo) {
|
||||
this.driverLicensePhotoInfo = driverLicensePhotoInfo;
|
||||
}
|
||||
|
||||
public String getDriverLicensePhotoUrl() {
|
||||
return driverLicensePhotoUrl == null ? "" : driverLicensePhotoUrl;
|
||||
}
|
||||
|
||||
public void setDriverLicensePhotoUrl(String driverLicensePhotoUrl) {
|
||||
this.driverLicensePhotoUrl = driverLicensePhotoUrl;
|
||||
}
|
||||
|
||||
public Object getDriverPhotoInfo() {
|
||||
return driverPhotoInfo;
|
||||
}
|
||||
|
||||
public void setDriverPhotoInfo(Object driverPhotoInfo) {
|
||||
this.driverPhotoInfo = driverPhotoInfo;
|
||||
}
|
||||
|
||||
public String getDriverPhotoUrl() {
|
||||
return driverPhotoUrl == null ? "" : driverPhotoUrl;
|
||||
}
|
||||
|
||||
public void setDriverPhotoUrl(String driverPhotoUrl) {
|
||||
this.driverPhotoUrl = driverPhotoUrl;
|
||||
}
|
||||
|
||||
public Object getLicensePhotoInfo() {
|
||||
return licensePhotoInfo;
|
||||
}
|
||||
|
||||
public void setLicensePhotoInfo(Object licensePhotoInfo) {
|
||||
this.licensePhotoInfo = licensePhotoInfo;
|
||||
}
|
||||
|
||||
public String getLicensePhotoUrl() {
|
||||
return licensePhotoUrl == null ? "" : licensePhotoUrl;
|
||||
}
|
||||
|
||||
public void setLicensePhotoUrl(String licensePhotoUrl) {
|
||||
this.licensePhotoUrl = licensePhotoUrl;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcardPhotoInfo() {
|
||||
return carOwnerIdcardPhotoInfo;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoInfo(Object carOwnerIdcardPhotoInfo) {
|
||||
this.carOwnerIdcardPhotoInfo = carOwnerIdcardPhotoInfo;
|
||||
}
|
||||
|
||||
public String getCarOwnerIdcardPhotoUrl() {
|
||||
return carOwnerIdcardPhotoUrl == null ? "" : carOwnerIdcardPhotoUrl;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoUrl(String carOwnerIdcardPhotoUrl) {
|
||||
this.carOwnerIdcardPhotoUrl = carOwnerIdcardPhotoUrl;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcardPhotoBackInfo() {
|
||||
return carOwnerIdcardPhotoBackInfo;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoBackInfo(Object carOwnerIdcardPhotoBackInfo) {
|
||||
this.carOwnerIdcardPhotoBackInfo = carOwnerIdcardPhotoBackInfo;
|
||||
}
|
||||
|
||||
public String getCarOwnerIdcardPhotoBackUrl() {
|
||||
return carOwnerIdcardPhotoBackUrl == null ? "" : carOwnerIdcardPhotoBackUrl;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoBackUrl(String carOwnerIdcardPhotoBackUrl) {
|
||||
this.carOwnerIdcardPhotoBackUrl = carOwnerIdcardPhotoBackUrl;
|
||||
}
|
||||
|
||||
public Object getCarOwnerIdcardPhotoHoldInfo() {
|
||||
return carOwnerIdcardPhotoHoldInfo;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoHoldInfo(Object carOwnerIdcardPhotoHoldInfo) {
|
||||
this.carOwnerIdcardPhotoHoldInfo = carOwnerIdcardPhotoHoldInfo;
|
||||
}
|
||||
|
||||
public String getCarOwnerIdcardPhotoHoldUrl() {
|
||||
return carOwnerIdcardPhotoHoldUrl == null ? "" : carOwnerIdcardPhotoHoldUrl;
|
||||
}
|
||||
|
||||
public void setCarOwnerIdcardPhotoHoldUrl(String carOwnerIdcardPhotoHoldUrl) {
|
||||
this.carOwnerIdcardPhotoHoldUrl = carOwnerIdcardPhotoHoldUrl;
|
||||
}
|
||||
|
||||
public Object getCarOwnerBankcardPhotoInfo() {
|
||||
return carOwnerBankcardPhotoInfo;
|
||||
}
|
||||
|
||||
public void setCarOwnerBankcardPhotoInfo(Object carOwnerBankcardPhotoInfo) {
|
||||
this.carOwnerBankcardPhotoInfo = carOwnerBankcardPhotoInfo;
|
||||
}
|
||||
|
||||
public String getCarOwnerBankcardPhotoUrl() {
|
||||
return carOwnerBankcardPhotoUrl == null ? "" : carOwnerBankcardPhotoUrl;
|
||||
}
|
||||
|
||||
public void setCarOwnerBankcardPhotoUrl(String carOwnerBankcardPhotoUrl) {
|
||||
this.carOwnerBankcardPhotoUrl = carOwnerBankcardPhotoUrl;
|
||||
}
|
||||
|
||||
public Object getMbindStatus() {
|
||||
return mbindStatus;
|
||||
}
|
||||
|
||||
public void setMbindStatus(Object mbindStatus) {
|
||||
this.mbindStatus = mbindStatus;
|
||||
}
|
||||
|
||||
public Object getMreason() {
|
||||
return mreason;
|
||||
}
|
||||
|
||||
public void setMreason(Object mreason) {
|
||||
this.mreason = mreason;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2022/2/10 17:12
|
||||
* @description:
|
||||
*/
|
||||
public class DriverExpireBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private String driverLicenseUpdateUrl;
|
||||
private String idCardUpdateUrl;
|
||||
|
||||
public String getDriverLicenseUpdateUrl() {
|
||||
return driverLicenseUpdateUrl;
|
||||
}
|
||||
|
||||
public void setDriverLicenseUpdateUrl(String driverLicenseUpdateUrl) {
|
||||
this.driverLicenseUpdateUrl = driverLicenseUpdateUrl;
|
||||
}
|
||||
|
||||
public String getIdCardUpdateUrl() {
|
||||
return idCardUpdateUrl;
|
||||
}
|
||||
|
||||
public void setIdCardUpdateUrl(String idCardUpdateUrl) {
|
||||
this.idCardUpdateUrl = idCardUpdateUrl;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/11/23 19:16
|
||||
* @description:
|
||||
*/
|
||||
public class FqBean {
|
||||
|
||||
private int pageSize;
|
||||
private int currentPage;
|
||||
private int totalCount;
|
||||
private int totalPage;
|
||||
private List<Invoice> driverInvoices;
|
||||
//{"currentPage":100,"driverInvoices":[],"pageSize":1,"totalCount":0,"totalPage":0}
|
||||
public int getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(int pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public int getCurrentPage() {
|
||||
return currentPage;
|
||||
}
|
||||
|
||||
public void setCurrentPage(int currentPage) {
|
||||
this.currentPage = currentPage;
|
||||
}
|
||||
|
||||
public int getTotalCount() {
|
||||
return totalCount;
|
||||
}
|
||||
|
||||
public void setTotalCount(int totalCount) {
|
||||
this.totalCount = totalCount;
|
||||
}
|
||||
|
||||
public int getTotalPage() {
|
||||
return totalPage;
|
||||
}
|
||||
|
||||
public void setTotalPage(int totalPage) {
|
||||
this.totalPage = totalPage;
|
||||
}
|
||||
|
||||
public List<Invoice> getDriverInvoices() {
|
||||
if (driverInvoices == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return driverInvoices;
|
||||
}
|
||||
|
||||
public void setDriverInvoices(List<Invoice> driverInvoices) {
|
||||
this.driverInvoices = driverInvoices;
|
||||
}
|
||||
|
||||
public class Invoice{
|
||||
String invoiceReceiverName; //受票方,string类型
|
||||
double taxRate; //发票税率,double类型
|
||||
double taxAmount; //税额, double类型
|
||||
double totalAmount; //金额, double类型
|
||||
double totalAmountIncludeTax; //金额+税额,double类型
|
||||
String driverInvoiceCode; //发票编号,string类型
|
||||
|
||||
public String getInvoiceReceiverName() {
|
||||
return invoiceReceiverName == null ? "" : invoiceReceiverName;
|
||||
}
|
||||
|
||||
public void setInvoiceReceiverName(String invoiceReceiverName) {
|
||||
this.invoiceReceiverName = invoiceReceiverName;
|
||||
}
|
||||
|
||||
public double getTaxRate() {
|
||||
return taxRate;
|
||||
}
|
||||
|
||||
public void setTaxRate(double taxRate) {
|
||||
this.taxRate = taxRate;
|
||||
}
|
||||
|
||||
public double getTaxAmount() {
|
||||
return taxAmount;
|
||||
}
|
||||
|
||||
public void setTaxAmount(double taxAmount) {
|
||||
this.taxAmount = taxAmount;
|
||||
}
|
||||
|
||||
public double getTotalAmount() {
|
||||
return totalAmount;
|
||||
}
|
||||
|
||||
public void setTotalAmount(double totalAmount) {
|
||||
this.totalAmount = totalAmount;
|
||||
}
|
||||
|
||||
public double getTotalAmountIncludeTax() {
|
||||
return totalAmountIncludeTax;
|
||||
}
|
||||
|
||||
public void setTotalAmountIncludeTax(double totalAmountIncludeTax) {
|
||||
this.totalAmountIncludeTax = totalAmountIncludeTax;
|
||||
}
|
||||
|
||||
public String getDriverInvoiceCode() {
|
||||
return driverInvoiceCode == null ? "" : driverInvoiceCode;
|
||||
}
|
||||
|
||||
public void setDriverInvoiceCode(String driverInvoiceCode) {
|
||||
this.driverInvoiceCode = driverInvoiceCode;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,924 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/7/31 17:47
|
||||
* @description:
|
||||
*/
|
||||
public class HuoYuanDelBean {
|
||||
|
||||
|
||||
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 int id;
|
||||
private Object waybillId;
|
||||
private String orderNum;
|
||||
private int shipperId;
|
||||
private String loadingName;
|
||||
private String loadingPhone;
|
||||
private String loadingProvinceCityArea;
|
||||
private String loadingAddress;
|
||||
private String loadingDeadline;
|
||||
private String receiverName;
|
||||
private String receiverPhone;
|
||||
private String receiverProvinceCityArea;
|
||||
private String receiverAddress;
|
||||
private String receiverDeadline;
|
||||
private int allowSplitting;
|
||||
private String goodsValue;
|
||||
private int isInsure;
|
||||
private String insureAmount;
|
||||
private String effectiveTime;
|
||||
private String distance;
|
||||
private int vehicleType;
|
||||
private String vehicleTypeName;
|
||||
private int vehicleLength;
|
||||
private String vehicleLengthName;
|
||||
private String namedDrivers;
|
||||
private String requirement;
|
||||
private String totalFreight;
|
||||
private String failedReason;
|
||||
private List<SendInfoDTO> sendInfo;
|
||||
private List<PutInfoDTO> putInfo;
|
||||
private String sendPutString;
|
||||
private String report;
|
||||
private String contractTemplateUrl;
|
||||
private int status;
|
||||
private Object statusOver;
|
||||
private Object contactName;
|
||||
private Object contactPhone;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Object getWaybillId() {
|
||||
return waybillId;
|
||||
}
|
||||
|
||||
public void setWaybillId(Object waybillId) {
|
||||
this.waybillId = waybillId;
|
||||
}
|
||||
|
||||
public String getOrderNum() {
|
||||
return orderNum == null ? "" : orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(String orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public int getShipperId() {
|
||||
return shipperId;
|
||||
}
|
||||
|
||||
public void setShipperId(int shipperId) {
|
||||
this.shipperId = shipperId;
|
||||
}
|
||||
|
||||
public String getLoadingName() {
|
||||
return loadingName == null ? "" : loadingName;
|
||||
}
|
||||
|
||||
public void setLoadingName(String loadingName) {
|
||||
this.loadingName = loadingName;
|
||||
}
|
||||
|
||||
public String getLoadingPhone() {
|
||||
return loadingPhone == null ? "" : loadingPhone;
|
||||
}
|
||||
|
||||
public void setLoadingPhone(String loadingPhone) {
|
||||
this.loadingPhone = loadingPhone;
|
||||
}
|
||||
|
||||
public String getLoadingProvinceCityArea() {
|
||||
return loadingProvinceCityArea == null ? "" : loadingProvinceCityArea;
|
||||
}
|
||||
|
||||
public void setLoadingProvinceCityArea(String loadingProvinceCityArea) {
|
||||
this.loadingProvinceCityArea = loadingProvinceCityArea;
|
||||
}
|
||||
|
||||
public String getLoadingAddress() {
|
||||
return loadingAddress == null ? "" : loadingAddress;
|
||||
}
|
||||
|
||||
public void setLoadingAddress(String loadingAddress) {
|
||||
this.loadingAddress = loadingAddress;
|
||||
}
|
||||
|
||||
public String getLoadingDeadline() {
|
||||
return loadingDeadline == null ? "" : loadingDeadline;
|
||||
}
|
||||
|
||||
public void setLoadingDeadline(String loadingDeadline) {
|
||||
this.loadingDeadline = loadingDeadline;
|
||||
}
|
||||
|
||||
public String getReceiverName() {
|
||||
return receiverName == null ? "" : receiverName;
|
||||
}
|
||||
|
||||
public void setReceiverName(String receiverName) {
|
||||
this.receiverName = receiverName;
|
||||
}
|
||||
|
||||
public String getReceiverPhone() {
|
||||
return receiverPhone == null ? "" : receiverPhone;
|
||||
}
|
||||
|
||||
public void setReceiverPhone(String receiverPhone) {
|
||||
this.receiverPhone = receiverPhone;
|
||||
}
|
||||
|
||||
public String getReceiverProvinceCityArea() {
|
||||
return receiverProvinceCityArea == null ? "" : receiverProvinceCityArea;
|
||||
}
|
||||
|
||||
public void setReceiverProvinceCityArea(String receiverProvinceCityArea) {
|
||||
this.receiverProvinceCityArea = receiverProvinceCityArea;
|
||||
}
|
||||
|
||||
public String getReceiverAddress() {
|
||||
return receiverAddress == null ? "" : receiverAddress;
|
||||
}
|
||||
|
||||
public void setReceiverAddress(String receiverAddress) {
|
||||
this.receiverAddress = receiverAddress;
|
||||
}
|
||||
|
||||
public String getReceiverDeadline() {
|
||||
return receiverDeadline == null ? "" : receiverDeadline;
|
||||
}
|
||||
|
||||
public void setReceiverDeadline(String receiverDeadline) {
|
||||
this.receiverDeadline = receiverDeadline;
|
||||
}
|
||||
|
||||
public int getAllowSplitting() {
|
||||
return allowSplitting;
|
||||
}
|
||||
|
||||
public void setAllowSplitting(int allowSplitting) {
|
||||
this.allowSplitting = allowSplitting;
|
||||
}
|
||||
|
||||
public String getGoodsValue() {
|
||||
return goodsValue == null ? "" : goodsValue;
|
||||
}
|
||||
|
||||
public void setGoodsValue(String goodsValue) {
|
||||
this.goodsValue = goodsValue;
|
||||
}
|
||||
|
||||
public int getIsInsure() {
|
||||
return isInsure;
|
||||
}
|
||||
|
||||
public void setIsInsure(int isInsure) {
|
||||
this.isInsure = isInsure;
|
||||
}
|
||||
|
||||
public String getInsureAmount() {
|
||||
return insureAmount == null ? "" : insureAmount;
|
||||
}
|
||||
|
||||
public void setInsureAmount(String insureAmount) {
|
||||
this.insureAmount = insureAmount;
|
||||
}
|
||||
|
||||
public String getEffectiveTime() {
|
||||
return effectiveTime == null ? "" : effectiveTime;
|
||||
}
|
||||
|
||||
public void setEffectiveTime(String effectiveTime) {
|
||||
this.effectiveTime = effectiveTime;
|
||||
}
|
||||
|
||||
public String getDistance() {
|
||||
return distance == null ? "" : distance;
|
||||
}
|
||||
|
||||
public void setDistance(String distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
|
||||
public int getVehicleType() {
|
||||
return vehicleType;
|
||||
}
|
||||
|
||||
public void setVehicleType(int vehicleType) {
|
||||
this.vehicleType = vehicleType;
|
||||
}
|
||||
|
||||
public String getVehicleTypeName() {
|
||||
return vehicleTypeName == null ? "" : vehicleTypeName;
|
||||
}
|
||||
|
||||
public void setVehicleTypeName(String vehicleTypeName) {
|
||||
this.vehicleTypeName = vehicleTypeName;
|
||||
}
|
||||
|
||||
public int getVehicleLength() {
|
||||
return vehicleLength;
|
||||
}
|
||||
|
||||
public void setVehicleLength(int vehicleLength) {
|
||||
this.vehicleLength = vehicleLength;
|
||||
}
|
||||
|
||||
public String getVehicleLengthName() {
|
||||
return vehicleLengthName == null ? "" : vehicleLengthName;
|
||||
}
|
||||
|
||||
public void setVehicleLengthName(String vehicleLengthName) {
|
||||
this.vehicleLengthName = vehicleLengthName;
|
||||
}
|
||||
|
||||
public String getNamedDrivers() {
|
||||
return namedDrivers == null ? "" : namedDrivers;
|
||||
}
|
||||
|
||||
public void setNamedDrivers(String namedDrivers) {
|
||||
this.namedDrivers = namedDrivers;
|
||||
}
|
||||
|
||||
public String getRequirement() {
|
||||
return requirement == null ? "" : requirement;
|
||||
}
|
||||
|
||||
public void setRequirement(String requirement) {
|
||||
this.requirement = requirement;
|
||||
}
|
||||
|
||||
public String getTotalFreight() {
|
||||
return totalFreight == null ? "" : totalFreight;
|
||||
}
|
||||
|
||||
public void setTotalFreight(String totalFreight) {
|
||||
this.totalFreight = totalFreight;
|
||||
}
|
||||
|
||||
public String getFailedReason() {
|
||||
return failedReason == null ? "" : failedReason;
|
||||
}
|
||||
|
||||
public void setFailedReason(String failedReason) {
|
||||
this.failedReason = failedReason;
|
||||
}
|
||||
|
||||
public List<SendInfoDTO> getSendInfo() {
|
||||
if (sendInfo == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return sendInfo;
|
||||
}
|
||||
|
||||
public void setSendInfo(List<SendInfoDTO> sendInfo) {
|
||||
this.sendInfo = sendInfo;
|
||||
}
|
||||
|
||||
public List<PutInfoDTO> getPutInfo() {
|
||||
if (putInfo == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return putInfo;
|
||||
}
|
||||
|
||||
public void setPutInfo(List<PutInfoDTO> putInfo) {
|
||||
this.putInfo = putInfo;
|
||||
}
|
||||
|
||||
public String getSendPutString() {
|
||||
return sendPutString == null ? "" : sendPutString;
|
||||
}
|
||||
|
||||
public void setSendPutString(String sendPutString) {
|
||||
this.sendPutString = sendPutString;
|
||||
}
|
||||
|
||||
public String getReport() {
|
||||
return report == null ? "" : report;
|
||||
}
|
||||
|
||||
public void setReport(String report) {
|
||||
this.report = report;
|
||||
}
|
||||
|
||||
public String getContractTemplateUrl() {
|
||||
return contractTemplateUrl == null ? "" : contractTemplateUrl;
|
||||
}
|
||||
|
||||
public void setContractTemplateUrl(String contractTemplateUrl) {
|
||||
this.contractTemplateUrl = contractTemplateUrl;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Object getStatusOver() {
|
||||
return statusOver;
|
||||
}
|
||||
|
||||
public void setStatusOver(Object statusOver) {
|
||||
this.statusOver = statusOver;
|
||||
}
|
||||
|
||||
public Object getContactName() {
|
||||
return contactName;
|
||||
}
|
||||
|
||||
public void setContactName(Object contactName) {
|
||||
this.contactName = contactName;
|
||||
}
|
||||
|
||||
public Object getContactPhone() {
|
||||
return contactPhone;
|
||||
}
|
||||
|
||||
public void setContactPhone(Object contactPhone) {
|
||||
this.contactPhone = contactPhone;
|
||||
}
|
||||
|
||||
public static class SendInfoDTO {
|
||||
private long childNumber;
|
||||
private int pid;
|
||||
private String name;
|
||||
private String phone;
|
||||
private int province;
|
||||
private int city;
|
||||
private int area;
|
||||
private String provinceCityArea;
|
||||
private String address;
|
||||
private String deadline;
|
||||
private int type;
|
||||
private int status;
|
||||
private int displayOrder;
|
||||
private Object totalAmount;
|
||||
private String createTime;
|
||||
private String longitude;
|
||||
private String latitude;
|
||||
private String businessName;
|
||||
private String businessCode;
|
||||
private List<GoodsDTO> goods;
|
||||
|
||||
public long getChildNumber() {
|
||||
return childNumber;
|
||||
}
|
||||
|
||||
public void setChildNumber(long childNumber) {
|
||||
this.childNumber = childNumber;
|
||||
}
|
||||
|
||||
public int getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(int pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone == null ? "" : phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public int getProvince() {
|
||||
return province;
|
||||
}
|
||||
|
||||
public void setProvince(int province) {
|
||||
this.province = province;
|
||||
}
|
||||
|
||||
public int getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(int city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public int getArea() {
|
||||
return area;
|
||||
}
|
||||
|
||||
public void setArea(int area) {
|
||||
this.area = area;
|
||||
}
|
||||
|
||||
public String getProvinceCityArea() {
|
||||
return provinceCityArea == null ? "" : provinceCityArea;
|
||||
}
|
||||
|
||||
public void setProvinceCityArea(String provinceCityArea) {
|
||||
this.provinceCityArea = provinceCityArea;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getDeadline() {
|
||||
return deadline == null ? "" : deadline;
|
||||
}
|
||||
|
||||
public void setDeadline(String deadline) {
|
||||
this.deadline = deadline;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public int getDisplayOrder() {
|
||||
return displayOrder;
|
||||
}
|
||||
|
||||
public void setDisplayOrder(int displayOrder) {
|
||||
this.displayOrder = displayOrder;
|
||||
}
|
||||
|
||||
public Object getTotalAmount() {
|
||||
return totalAmount;
|
||||
}
|
||||
|
||||
public void setTotalAmount(Object totalAmount) {
|
||||
this.totalAmount = totalAmount;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime == null ? "" : createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
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 String getBusinessName() {
|
||||
return businessName == null ? "" : businessName;
|
||||
}
|
||||
|
||||
public void setBusinessName(String businessName) {
|
||||
this.businessName = businessName;
|
||||
}
|
||||
|
||||
public String getBusinessCode() {
|
||||
return businessCode == null ? "" : businessCode;
|
||||
}
|
||||
|
||||
public void setBusinessCode(String businessCode) {
|
||||
this.businessCode = businessCode;
|
||||
}
|
||||
|
||||
public List<GoodsDTO> getGoods() {
|
||||
if (goods == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return goods;
|
||||
}
|
||||
|
||||
public void setGoods(List<GoodsDTO> goods) {
|
||||
this.goods = goods;
|
||||
}
|
||||
|
||||
public static class GoodsDTO {
|
||||
private long id;
|
||||
private long childrenId;
|
||||
private String goodName;
|
||||
private String goodNum;
|
||||
private String goodUnit;
|
||||
private String goodPrice;
|
||||
private String packName;
|
||||
private Object createTime;
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public long getChildrenId() {
|
||||
return childrenId;
|
||||
}
|
||||
|
||||
public void setChildrenId(long 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 String getGoodPrice() {
|
||||
return goodPrice == null ? "" : goodPrice;
|
||||
}
|
||||
|
||||
public void setGoodPrice(String 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static class PutInfoDTO {
|
||||
private long childNumber;
|
||||
private int pid;
|
||||
private String name;
|
||||
private String phone;
|
||||
private int province;
|
||||
private int city;
|
||||
private int area;
|
||||
private String provinceCityArea;
|
||||
private String address;
|
||||
private String deadline;
|
||||
private int type;
|
||||
private int status;
|
||||
private int displayOrder;
|
||||
private Object totalAmount;
|
||||
private String createTime;
|
||||
private String longitude;
|
||||
private String latitude;
|
||||
private String businessName;
|
||||
private String businessCode;
|
||||
private List<GoodsDTO> goods;
|
||||
|
||||
public long getChildNumber() {
|
||||
return childNumber;
|
||||
}
|
||||
|
||||
public void setChildNumber(long childNumber) {
|
||||
this.childNumber = childNumber;
|
||||
}
|
||||
|
||||
public int getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(int pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPhone() {
|
||||
return phone == null ? "" : phone;
|
||||
}
|
||||
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public int getProvince() {
|
||||
return province;
|
||||
}
|
||||
|
||||
public void setProvince(int province) {
|
||||
this.province = province;
|
||||
}
|
||||
|
||||
public int getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity(int city) {
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public int getArea() {
|
||||
return area;
|
||||
}
|
||||
|
||||
public void setArea(int area) {
|
||||
this.area = area;
|
||||
}
|
||||
|
||||
public String getProvinceCityArea() {
|
||||
return provinceCityArea == null ? "" : provinceCityArea;
|
||||
}
|
||||
|
||||
public void setProvinceCityArea(String provinceCityArea) {
|
||||
this.provinceCityArea = provinceCityArea;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getDeadline() {
|
||||
return deadline == null ? "" : deadline;
|
||||
}
|
||||
|
||||
public void setDeadline(String deadline) {
|
||||
this.deadline = deadline;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public int getDisplayOrder() {
|
||||
return displayOrder;
|
||||
}
|
||||
|
||||
public void setDisplayOrder(int displayOrder) {
|
||||
this.displayOrder = displayOrder;
|
||||
}
|
||||
|
||||
public Object getTotalAmount() {
|
||||
return totalAmount;
|
||||
}
|
||||
|
||||
public void setTotalAmount(Object totalAmount) {
|
||||
this.totalAmount = totalAmount;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime == null ? "" : createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
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 String getBusinessName() {
|
||||
return businessName == null ? "" : businessName;
|
||||
}
|
||||
|
||||
public void setBusinessName(String businessName) {
|
||||
this.businessName = businessName;
|
||||
}
|
||||
|
||||
public String getBusinessCode() {
|
||||
return businessCode == null ? "" : businessCode;
|
||||
}
|
||||
|
||||
public void setBusinessCode(String businessCode) {
|
||||
this.businessCode = businessCode;
|
||||
}
|
||||
|
||||
public List<GoodsDTO> getGoods() {
|
||||
if (goods == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return goods;
|
||||
}
|
||||
|
||||
public void setGoods(List<GoodsDTO> goods) {
|
||||
this.goods = goods;
|
||||
}
|
||||
|
||||
public static class GoodsDTO {
|
||||
private long id;
|
||||
private long childrenId;
|
||||
private String goodName;
|
||||
private String goodNum;
|
||||
private String goodUnit;
|
||||
private String goodPrice;
|
||||
private String packName;
|
||||
private Object createTime;
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public long getChildrenId() {
|
||||
return childrenId;
|
||||
}
|
||||
|
||||
public void setChildrenId(long 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 String getGoodPrice() {
|
||||
return goodPrice == null ? "" : goodPrice;
|
||||
}
|
||||
|
||||
public void setGoodPrice(String 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,272 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class HuoYuanListBean {
|
||||
|
||||
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 List<RecordsDTO> records;
|
||||
private int total;
|
||||
private int size;
|
||||
private int current;
|
||||
private List<?> orders;
|
||||
private boolean searchCount;
|
||||
private int pages;
|
||||
|
||||
public List<RecordsDTO> getRecords() {
|
||||
if (records == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return records;
|
||||
}
|
||||
|
||||
public void setRecords(List<RecordsDTO> records) {
|
||||
this.records = records;
|
||||
}
|
||||
|
||||
public int getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
public void setTotal(int total) {
|
||||
this.total = total;
|
||||
}
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
public void setSize(int size) {
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
public int getCurrent() {
|
||||
return current;
|
||||
}
|
||||
|
||||
public void setCurrent(int current) {
|
||||
this.current = current;
|
||||
}
|
||||
|
||||
public List<?> getOrders() {
|
||||
if (orders == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return orders;
|
||||
}
|
||||
|
||||
public void setOrders(List<?> orders) {
|
||||
this.orders = orders;
|
||||
}
|
||||
|
||||
public boolean isSearchCount() {
|
||||
return searchCount;
|
||||
}
|
||||
|
||||
public void setSearchCount(boolean searchCount) {
|
||||
this.searchCount = searchCount;
|
||||
}
|
||||
|
||||
public int getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
public void setPages(int pages) {
|
||||
this.pages = pages;
|
||||
}
|
||||
|
||||
public static class RecordsDTO {
|
||||
private int orderId;
|
||||
private String orderNum;
|
||||
private String goodsBigCate;
|
||||
private String totalFreight;
|
||||
private int dispatchType;
|
||||
private String effectiveTime;
|
||||
private String sendPutString;
|
||||
private String distance;
|
||||
private String loadingAddress;
|
||||
private String receiverAddress;
|
||||
private String vehicleType;
|
||||
private String vehicleLength;
|
||||
private String loadingCity;
|
||||
private String receiverCity;
|
||||
private String latitude;
|
||||
private String longitude;
|
||||
|
||||
public String getLoadingCity() {
|
||||
return loadingCity == null ? "" : loadingCity;
|
||||
}
|
||||
|
||||
public void setLoadingCity(String loadingCity) {
|
||||
this.loadingCity = loadingCity;
|
||||
}
|
||||
|
||||
public String getReceiverCity() {
|
||||
return receiverCity == null ? "" : receiverCity;
|
||||
}
|
||||
|
||||
public void setReceiverCity(String receiverCity) {
|
||||
this.receiverCity = receiverCity;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return latitude == null ? "" : latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getLongitude() {
|
||||
return longitude == null ? "" : longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public int getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public void setOrderId(int orderId) {
|
||||
this.orderId = orderId;
|
||||
}
|
||||
|
||||
public String getOrderNum() {
|
||||
return orderNum == null ? "" : orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(String orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public String getGoodsBigCate() {
|
||||
return goodsBigCate == null ? "" : goodsBigCate;
|
||||
}
|
||||
|
||||
public void setGoodsBigCate(String goodsBigCate) {
|
||||
this.goodsBigCate = goodsBigCate;
|
||||
}
|
||||
|
||||
public String getTotalFreight() {
|
||||
return totalFreight == null ? "" : totalFreight;
|
||||
}
|
||||
|
||||
public void setTotalFreight(String totalFreight) {
|
||||
this.totalFreight = totalFreight;
|
||||
}
|
||||
|
||||
public int getDispatchType() {
|
||||
return dispatchType;
|
||||
}
|
||||
|
||||
public void setDispatchType(int dispatchType) {
|
||||
this.dispatchType = dispatchType;
|
||||
}
|
||||
|
||||
public String getEffectiveTime() {
|
||||
return effectiveTime == null ? "" : effectiveTime;
|
||||
}
|
||||
|
||||
public void setEffectiveTime(String effectiveTime) {
|
||||
this.effectiveTime = effectiveTime;
|
||||
}
|
||||
|
||||
public String getSendPutString() {
|
||||
return sendPutString == null ? "" : sendPutString;
|
||||
}
|
||||
|
||||
public void setSendPutString(String sendPutString) {
|
||||
this.sendPutString = sendPutString;
|
||||
}
|
||||
|
||||
public String getDistance() {
|
||||
return distance == null ? "" : distance;
|
||||
}
|
||||
|
||||
public void setDistance(String distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
|
||||
public String getLoadingAddress() {
|
||||
return loadingAddress == null ? "" : loadingAddress;
|
||||
}
|
||||
|
||||
public void setLoadingAddress(String loadingAddress) {
|
||||
this.loadingAddress = loadingAddress;
|
||||
}
|
||||
|
||||
public String getReceiverAddress() {
|
||||
return receiverAddress == null ? "" : receiverAddress;
|
||||
}
|
||||
|
||||
public void setReceiverAddress(String receiverAddress) {
|
||||
this.receiverAddress = receiverAddress;
|
||||
}
|
||||
|
||||
public String getVehicleType() {
|
||||
return vehicleType == null ? "" : vehicleType;
|
||||
}
|
||||
|
||||
public void setVehicleType(String vehicleType) {
|
||||
this.vehicleType = vehicleType;
|
||||
}
|
||||
|
||||
public String getVehicleLength() {
|
||||
return vehicleLength == null ? "" : vehicleLength;
|
||||
}
|
||||
|
||||
public void setVehicleLength(String vehicleLength) {
|
||||
this.vehicleLength = vehicleLength;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,418 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/10/23 17:40
|
||||
* @description:
|
||||
*/
|
||||
public class HuoYuanListDealBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private int res;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getRes() {
|
||||
return res;
|
||||
}
|
||||
|
||||
public void setRes(int res) {
|
||||
this.res = res;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private int current;
|
||||
private List<OrdersDTO> orders;
|
||||
private int pages;
|
||||
private List<RecordsDTO> records;
|
||||
private boolean searchCount;
|
||||
private int size;
|
||||
private int total;
|
||||
|
||||
public int getCurrent() {
|
||||
return current;
|
||||
}
|
||||
|
||||
public void setCurrent(int current) {
|
||||
this.current = current;
|
||||
}
|
||||
|
||||
public List<OrdersDTO> getOrders() {
|
||||
return orders;
|
||||
}
|
||||
|
||||
public void setOrders(List<OrdersDTO> orders) {
|
||||
this.orders = orders;
|
||||
}
|
||||
|
||||
public int getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
public void setPages(int pages) {
|
||||
this.pages = pages;
|
||||
}
|
||||
|
||||
public List<RecordsDTO> getRecords() {
|
||||
return records;
|
||||
}
|
||||
|
||||
public void setRecords(List<RecordsDTO> records) {
|
||||
this.records = records;
|
||||
}
|
||||
|
||||
public boolean isSearchCount() {
|
||||
return searchCount;
|
||||
}
|
||||
|
||||
public void setSearchCount(boolean searchCount) {
|
||||
this.searchCount = searchCount;
|
||||
}
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
public void setSize(int size) {
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
public int getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
public void setTotal(int total) {
|
||||
this.total = total;
|
||||
}
|
||||
|
||||
public static class OrdersDTO {
|
||||
private boolean asc;
|
||||
private String column;
|
||||
|
||||
public boolean isAsc() {
|
||||
return asc;
|
||||
}
|
||||
|
||||
public void setAsc(boolean asc) {
|
||||
this.asc = asc;
|
||||
}
|
||||
|
||||
public String getColumn() {
|
||||
return column;
|
||||
}
|
||||
|
||||
public void setColumn(String column) {
|
||||
this.column = column;
|
||||
}
|
||||
}
|
||||
|
||||
public static class RecordsDTO {
|
||||
private String carNum;
|
||||
private int complaint;
|
||||
private String contactName;
|
||||
private String contactPhone;
|
||||
private int dispatchType;
|
||||
private String distance;
|
||||
private String driverName;
|
||||
private String driverPhone;
|
||||
private String effectiveTime;
|
||||
private String goodsBigCate;
|
||||
private int isShipperEvaluation;
|
||||
private String latitude;
|
||||
private String loadingAddress;
|
||||
private String loadingCity;
|
||||
private String longitude;
|
||||
private int makeStatus;
|
||||
private int multipleScore;
|
||||
private int orderId;
|
||||
private String orderNum;
|
||||
private String receiveCarNum;
|
||||
private String receiveTime;
|
||||
private String receiverAddress;
|
||||
private String receiverCity;
|
||||
private String sendPutString;
|
||||
private int status;
|
||||
private String statusOver;
|
||||
private String totalFreight;
|
||||
private String vehicleLength;
|
||||
private String vehicleType;
|
||||
private int waybillId;
|
||||
|
||||
public String getCarNum() {
|
||||
return carNum;
|
||||
}
|
||||
|
||||
public void setCarNum(String carNum) {
|
||||
this.carNum = carNum;
|
||||
}
|
||||
|
||||
public int getComplaint() {
|
||||
return complaint;
|
||||
}
|
||||
|
||||
public void setComplaint(int complaint) {
|
||||
this.complaint = complaint;
|
||||
}
|
||||
|
||||
public String getContactName() {
|
||||
return contactName;
|
||||
}
|
||||
|
||||
public void setContactName(String contactName) {
|
||||
this.contactName = contactName;
|
||||
}
|
||||
|
||||
public String getContactPhone() {
|
||||
return contactPhone;
|
||||
}
|
||||
|
||||
public void setContactPhone(String contactPhone) {
|
||||
this.contactPhone = contactPhone;
|
||||
}
|
||||
|
||||
public int getDispatchType() {
|
||||
return dispatchType;
|
||||
}
|
||||
|
||||
public void setDispatchType(int dispatchType) {
|
||||
this.dispatchType = dispatchType;
|
||||
}
|
||||
|
||||
public String getDistance() {
|
||||
return distance;
|
||||
}
|
||||
|
||||
public void setDistance(String distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
|
||||
public String getDriverName() {
|
||||
return driverName;
|
||||
}
|
||||
|
||||
public void setDriverName(String driverName) {
|
||||
this.driverName = driverName;
|
||||
}
|
||||
|
||||
public String getDriverPhone() {
|
||||
return driverPhone;
|
||||
}
|
||||
|
||||
public void setDriverPhone(String driverPhone) {
|
||||
this.driverPhone = driverPhone;
|
||||
}
|
||||
|
||||
public String getEffectiveTime() {
|
||||
return effectiveTime;
|
||||
}
|
||||
|
||||
public void setEffectiveTime(String effectiveTime) {
|
||||
this.effectiveTime = effectiveTime;
|
||||
}
|
||||
|
||||
public String getGoodsBigCate() {
|
||||
return goodsBigCate;
|
||||
}
|
||||
|
||||
public void setGoodsBigCate(String goodsBigCate) {
|
||||
this.goodsBigCate = goodsBigCate;
|
||||
}
|
||||
|
||||
public int getIsShipperEvaluation() {
|
||||
return isShipperEvaluation;
|
||||
}
|
||||
|
||||
public void setIsShipperEvaluation(int isShipperEvaluation) {
|
||||
this.isShipperEvaluation = isShipperEvaluation;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getLoadingAddress() {
|
||||
return loadingAddress;
|
||||
}
|
||||
|
||||
public void setLoadingAddress(String loadingAddress) {
|
||||
this.loadingAddress = loadingAddress;
|
||||
}
|
||||
|
||||
public String getLoadingCity() {
|
||||
return loadingCity;
|
||||
}
|
||||
|
||||
public void setLoadingCity(String loadingCity) {
|
||||
this.loadingCity = loadingCity;
|
||||
}
|
||||
|
||||
public String getLongitude() {
|
||||
return longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public int getMakeStatus() {
|
||||
return makeStatus;
|
||||
}
|
||||
|
||||
public void setMakeStatus(int makeStatus) {
|
||||
this.makeStatus = makeStatus;
|
||||
}
|
||||
|
||||
public int getMultipleScore() {
|
||||
return multipleScore;
|
||||
}
|
||||
|
||||
public void setMultipleScore(int multipleScore) {
|
||||
this.multipleScore = multipleScore;
|
||||
}
|
||||
|
||||
public int getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public void setOrderId(int orderId) {
|
||||
this.orderId = orderId;
|
||||
}
|
||||
|
||||
public String getOrderNum() {
|
||||
return orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(String orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public String getReceiveCarNum() {
|
||||
return receiveCarNum;
|
||||
}
|
||||
|
||||
public void setReceiveCarNum(String receiveCarNum) {
|
||||
this.receiveCarNum = receiveCarNum;
|
||||
}
|
||||
|
||||
public String getReceiveTime() {
|
||||
return receiveTime;
|
||||
}
|
||||
|
||||
public void setReceiveTime(String receiveTime) {
|
||||
this.receiveTime = receiveTime;
|
||||
}
|
||||
|
||||
public String getReceiverAddress() {
|
||||
return receiverAddress;
|
||||
}
|
||||
|
||||
public void setReceiverAddress(String receiverAddress) {
|
||||
this.receiverAddress = receiverAddress;
|
||||
}
|
||||
|
||||
public String getReceiverCity() {
|
||||
return receiverCity;
|
||||
}
|
||||
|
||||
public void setReceiverCity(String receiverCity) {
|
||||
this.receiverCity = receiverCity;
|
||||
}
|
||||
|
||||
public String getSendPutString() {
|
||||
return sendPutString;
|
||||
}
|
||||
|
||||
public void setSendPutString(String sendPutString) {
|
||||
this.sendPutString = sendPutString;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getStatusOver() {
|
||||
return statusOver;
|
||||
}
|
||||
|
||||
public void setStatusOver(String statusOver) {
|
||||
this.statusOver = statusOver;
|
||||
}
|
||||
|
||||
public String getTotalFreight() {
|
||||
return totalFreight;
|
||||
}
|
||||
|
||||
public void setTotalFreight(String totalFreight) {
|
||||
this.totalFreight = totalFreight;
|
||||
}
|
||||
|
||||
public String getVehicleLength() {
|
||||
return vehicleLength;
|
||||
}
|
||||
|
||||
public void setVehicleLength(String vehicleLength) {
|
||||
this.vehicleLength = vehicleLength;
|
||||
}
|
||||
|
||||
public String getVehicleType() {
|
||||
return vehicleType;
|
||||
}
|
||||
|
||||
public void setVehicleType(String vehicleType) {
|
||||
this.vehicleType = vehicleType;
|
||||
}
|
||||
|
||||
public int getWaybillId() {
|
||||
return waybillId;
|
||||
}
|
||||
|
||||
public void setWaybillId(int waybillId) {
|
||||
this.waybillId = waybillId;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,106 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2022/1/12 17:52
|
||||
* @description:
|
||||
*/
|
||||
public class ImageConfig {
|
||||
|
||||
private int code;
|
||||
private List<DataDTO> data;
|
||||
private String msg;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public List<DataDTO> getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(List<DataDTO> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private int countDownSecond;
|
||||
private int imageId;
|
||||
private int jumpType;
|
||||
private String jumpUrl;
|
||||
private String title;
|
||||
private String url;
|
||||
|
||||
public int getCountDownSecond() {
|
||||
return countDownSecond;
|
||||
}
|
||||
|
||||
public void setCountDownSecond(int countDownSecond) {
|
||||
this.countDownSecond = countDownSecond;
|
||||
}
|
||||
|
||||
public int getImageId() {
|
||||
return imageId;
|
||||
}
|
||||
|
||||
public void setImageId(int imageId) {
|
||||
this.imageId = imageId;
|
||||
}
|
||||
|
||||
public int getJumpType() {
|
||||
return jumpType;
|
||||
}
|
||||
|
||||
public void setJumpType(int jumpType) {
|
||||
this.jumpType = jumpType;
|
||||
}
|
||||
|
||||
public String getJumpUrl() {
|
||||
return jumpUrl;
|
||||
}
|
||||
|
||||
public void setJumpUrl(String jumpUrl) {
|
||||
this.jumpUrl = jumpUrl;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,167 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/5 15:26
|
||||
* @description:身份证认证信息
|
||||
*/
|
||||
public class IsAuthCardBean {
|
||||
|
||||
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 idcard;
|
||||
private String idcardValidity;
|
||||
private int idcardPhoto;
|
||||
private String idcardPhotoUrl;
|
||||
private int idcardBackPhoto;
|
||||
private String idcardPhotoBackUrl;
|
||||
private String idcardAddress;
|
||||
private String idcardName;
|
||||
private int idcardSex;
|
||||
private int idCardStatus;
|
||||
private String idCardReason;
|
||||
private boolean edit;
|
||||
|
||||
public String getIdcard() {
|
||||
return idcard == null ? "" : idcard;
|
||||
}
|
||||
|
||||
public void setIdcard(String idcard) {
|
||||
this.idcard = idcard;
|
||||
}
|
||||
|
||||
public String getIdcardValidity() {
|
||||
return idcardValidity == null ? "" : idcardValidity;
|
||||
}
|
||||
|
||||
public void setIdcardValidity(String idcardValidity) {
|
||||
this.idcardValidity = idcardValidity;
|
||||
}
|
||||
|
||||
public int getIdcardPhoto() {
|
||||
return idcardPhoto;
|
||||
}
|
||||
|
||||
public void setIdcardPhoto(int idcardPhoto) {
|
||||
this.idcardPhoto = idcardPhoto;
|
||||
}
|
||||
|
||||
public String getIdcardPhotoUrl() {
|
||||
return idcardPhotoUrl == null ? "" : idcardPhotoUrl;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoUrl(String idcardPhotoUrl) {
|
||||
this.idcardPhotoUrl = idcardPhotoUrl;
|
||||
}
|
||||
|
||||
public int getIdcardBackPhoto() {
|
||||
return idcardBackPhoto;
|
||||
}
|
||||
|
||||
public void setIdcardBackPhoto(int idcardBackPhoto) {
|
||||
this.idcardBackPhoto = idcardBackPhoto;
|
||||
}
|
||||
|
||||
public String getIdcardPhotoBackUrl() {
|
||||
return idcardPhotoBackUrl == null ? "" : idcardPhotoBackUrl;
|
||||
}
|
||||
|
||||
public void setIdcardPhotoBackUrl(String idcardPhotoBackUrl) {
|
||||
this.idcardPhotoBackUrl = idcardPhotoBackUrl;
|
||||
}
|
||||
|
||||
public String getIdcardAddress() {
|
||||
return idcardAddress == null ? "" : idcardAddress;
|
||||
}
|
||||
|
||||
public void setIdcardAddress(String idcardAddress) {
|
||||
this.idcardAddress = idcardAddress;
|
||||
}
|
||||
|
||||
public String getIdcardName() {
|
||||
return idcardName == null ? "" : idcardName;
|
||||
}
|
||||
|
||||
public void setIdcardName(String idcardName) {
|
||||
this.idcardName = idcardName;
|
||||
}
|
||||
|
||||
public int getIdcardSex() {
|
||||
return idcardSex;
|
||||
}
|
||||
|
||||
public void setIdcardSex(int idcardSex) {
|
||||
this.idcardSex = idcardSex;
|
||||
}
|
||||
|
||||
public int getIdCardStatus() {
|
||||
return idCardStatus;
|
||||
}
|
||||
|
||||
public void setIdCardStatus(int idCardStatus) {
|
||||
this.idCardStatus = idCardStatus;
|
||||
}
|
||||
|
||||
public String getIdCardReason() {
|
||||
return idCardReason == null ? "" : idCardReason;
|
||||
}
|
||||
|
||||
public void setIdCardReason(String idCardReason) {
|
||||
this.idCardReason = idCardReason;
|
||||
}
|
||||
|
||||
public boolean isEdit() {
|
||||
return edit;
|
||||
}
|
||||
|
||||
public void setEdit(boolean edit) {
|
||||
this.edit = edit;
|
||||
}
|
||||
}
|
||||
}
|
||||
+176
@@ -0,0 +1,176 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/5 15:26
|
||||
* @description:驾驶证认证信息
|
||||
*/
|
||||
public class IsAuthDriverAuthLicenseBean {
|
||||
|
||||
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 archivesName;
|
||||
private String driverLicense;
|
||||
private String driverLicenseName;
|
||||
private String allowType;
|
||||
private int driverLicensePhoto;
|
||||
private int driverLicenseBackPhoto;
|
||||
private String driverLicensePhotoUrl;
|
||||
private String driverLicenseBackPhotoUrl;
|
||||
private String driverLicenseFirstTime;
|
||||
private String driverLicenseValidity;
|
||||
private int driverLicenseStatus;
|
||||
private String driverLicenseReason;
|
||||
private boolean edit;
|
||||
|
||||
public String getArchivesName() {
|
||||
return archivesName == null ? "" : archivesName;
|
||||
}
|
||||
|
||||
public void setArchivesName(String archivesName) {
|
||||
this.archivesName = archivesName;
|
||||
}
|
||||
|
||||
public String getDriverLicense() {
|
||||
return driverLicense == null ? "" : driverLicense;
|
||||
}
|
||||
|
||||
public void setDriverLicense(String driverLicense) {
|
||||
this.driverLicense = driverLicense;
|
||||
}
|
||||
|
||||
public String getDriverLicenseName() {
|
||||
return driverLicenseName == null ? "" : driverLicenseName;
|
||||
}
|
||||
|
||||
public void setDriverLicenseName(String driverLicenseName) {
|
||||
this.driverLicenseName = driverLicenseName;
|
||||
}
|
||||
|
||||
public String getAllowType() {
|
||||
return allowType == null ? "" : allowType;
|
||||
}
|
||||
|
||||
public void setAllowType(String allowType) {
|
||||
this.allowType = allowType;
|
||||
}
|
||||
|
||||
public int getDriverLicensePhoto() {
|
||||
return driverLicensePhoto;
|
||||
}
|
||||
|
||||
public void setDriverLicensePhoto(int driverLicensePhoto) {
|
||||
this.driverLicensePhoto = driverLicensePhoto;
|
||||
}
|
||||
|
||||
public int getDriverLicenseBackPhoto() {
|
||||
return driverLicenseBackPhoto;
|
||||
}
|
||||
|
||||
public void setDriverLicenseBackPhoto(int driverLicenseBackPhoto) {
|
||||
this.driverLicenseBackPhoto = driverLicenseBackPhoto;
|
||||
}
|
||||
|
||||
public String getDriverLicensePhotoUrl() {
|
||||
return driverLicensePhotoUrl == null ? "" : driverLicensePhotoUrl;
|
||||
}
|
||||
|
||||
public void setDriverLicensePhotoUrl(String driverLicensePhotoUrl) {
|
||||
this.driverLicensePhotoUrl = driverLicensePhotoUrl;
|
||||
}
|
||||
|
||||
public String getDriverLicenseBackPhotoUrl() {
|
||||
return driverLicenseBackPhotoUrl == null ? "" : driverLicenseBackPhotoUrl;
|
||||
}
|
||||
|
||||
public void setDriverLicenseBackPhotoUrl(String driverLicenseBackPhotoUrl) {
|
||||
this.driverLicenseBackPhotoUrl = driverLicenseBackPhotoUrl;
|
||||
}
|
||||
|
||||
public String getDriverLicenseFirstTime() {
|
||||
return driverLicenseFirstTime == null ? "" : driverLicenseFirstTime;
|
||||
}
|
||||
|
||||
public void setDriverLicenseFirstTime(String driverLicenseFirstTime) {
|
||||
this.driverLicenseFirstTime = driverLicenseFirstTime;
|
||||
}
|
||||
|
||||
public String getDriverLicenseValidity() {
|
||||
return driverLicenseValidity == null ? "" : driverLicenseValidity;
|
||||
}
|
||||
|
||||
public void setDriverLicenseValidity(String driverLicenseValidity) {
|
||||
this.driverLicenseValidity = driverLicenseValidity;
|
||||
}
|
||||
|
||||
public int getDriverLicenseStatus() {
|
||||
return driverLicenseStatus;
|
||||
}
|
||||
|
||||
public void setDriverLicenseStatus(int driverLicenseStatus) {
|
||||
this.driverLicenseStatus = driverLicenseStatus;
|
||||
}
|
||||
|
||||
public String getDriverLicenseReason() {
|
||||
return driverLicenseReason == null ? "" : driverLicenseReason;
|
||||
}
|
||||
|
||||
public void setDriverLicenseReason(String driverLicenseReason) {
|
||||
this.driverLicenseReason = driverLicenseReason;
|
||||
}
|
||||
|
||||
public boolean isEdit() {
|
||||
return edit;
|
||||
}
|
||||
|
||||
public void setEdit(boolean edit) {
|
||||
this.edit = edit;
|
||||
}
|
||||
}
|
||||
}
|
||||
+122
@@ -0,0 +1,122 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/9/1 18:58
|
||||
* @description:
|
||||
*/
|
||||
public class IsAuthDriverAuthQualificationBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private int res;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getRes() {
|
||||
return res;
|
||||
}
|
||||
|
||||
public void setRes(int res) {
|
||||
this.res = res;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private boolean edit;
|
||||
private String qualificationCertificate;
|
||||
private int qualificationCertificatePhoto;
|
||||
private String qualificationCertificatePhotoUrl;
|
||||
private String qualificationCertificateReason;
|
||||
private int qualificationCertificateStatus;
|
||||
private String qualificationCertificateValidity;
|
||||
|
||||
public boolean isEdit() {
|
||||
return edit;
|
||||
}
|
||||
|
||||
public void setEdit(boolean edit) {
|
||||
this.edit = edit;
|
||||
}
|
||||
|
||||
public String getQualificationCertificate() {
|
||||
return qualificationCertificate == null ? "" : qualificationCertificate;
|
||||
}
|
||||
|
||||
public void setQualificationCertificate(String qualificationCertificate) {
|
||||
this.qualificationCertificate = qualificationCertificate;
|
||||
}
|
||||
|
||||
public int getQualificationCertificatePhoto() {
|
||||
return qualificationCertificatePhoto;
|
||||
}
|
||||
|
||||
public void setQualificationCertificatePhoto(int qualificationCertificatePhoto) {
|
||||
this.qualificationCertificatePhoto = qualificationCertificatePhoto;
|
||||
}
|
||||
|
||||
public String getQualificationCertificatePhotoUrl() {
|
||||
return qualificationCertificatePhotoUrl == null ? "" : qualificationCertificatePhotoUrl;
|
||||
}
|
||||
|
||||
public void setQualificationCertificatePhotoUrl(String qualificationCertificatePhotoUrl) {
|
||||
this.qualificationCertificatePhotoUrl = qualificationCertificatePhotoUrl;
|
||||
}
|
||||
|
||||
public String getQualificationCertificateReason() {
|
||||
return qualificationCertificateReason == null ? "" : qualificationCertificateReason;
|
||||
}
|
||||
|
||||
public void setQualificationCertificateReason(String qualificationCertificateReason) {
|
||||
this.qualificationCertificateReason = qualificationCertificateReason;
|
||||
}
|
||||
|
||||
public int getQualificationCertificateStatus() {
|
||||
return qualificationCertificateStatus;
|
||||
}
|
||||
|
||||
public void setQualificationCertificateStatus(int qualificationCertificateStatus) {
|
||||
this.qualificationCertificateStatus = qualificationCertificateStatus;
|
||||
}
|
||||
|
||||
public String getQualificationCertificateValidity() {
|
||||
return qualificationCertificateValidity == null ? "" : qualificationCertificateValidity;
|
||||
}
|
||||
|
||||
public void setQualificationCertificateValidity(String qualificationCertificateValidity) {
|
||||
this.qualificationCertificateValidity = qualificationCertificateValidity;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2022/2/16 17:37
|
||||
* @description:
|
||||
*/
|
||||
public class JTT {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private String createTime;
|
||||
private boolean delFlag;
|
||||
private int id;
|
||||
private String trafficCode;
|
||||
private String trafficId;
|
||||
private String trafficName;
|
||||
private String trafficNum;
|
||||
private String trafficSecret;
|
||||
private String trafficType;
|
||||
private String updateTime;
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public boolean isDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
public void setDelFlag(boolean delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getTrafficCode() {
|
||||
return trafficCode;
|
||||
}
|
||||
|
||||
public void setTrafficCode(String trafficCode) {
|
||||
this.trafficCode = trafficCode;
|
||||
}
|
||||
|
||||
public String getTrafficId() {
|
||||
return trafficId;
|
||||
}
|
||||
|
||||
public void setTrafficId(String trafficId) {
|
||||
this.trafficId = trafficId;
|
||||
}
|
||||
|
||||
public String getTrafficName() {
|
||||
return trafficName;
|
||||
}
|
||||
|
||||
public void setTrafficName(String trafficName) {
|
||||
this.trafficName = trafficName;
|
||||
}
|
||||
|
||||
public String getTrafficNum() {
|
||||
return trafficNum;
|
||||
}
|
||||
|
||||
public void setTrafficNum(String trafficNum) {
|
||||
this.trafficNum = trafficNum;
|
||||
}
|
||||
|
||||
public String getTrafficSecret() {
|
||||
return trafficSecret;
|
||||
}
|
||||
|
||||
public void setTrafficSecret(String trafficSecret) {
|
||||
this.trafficSecret = trafficSecret;
|
||||
}
|
||||
|
||||
public String getTrafficType() {
|
||||
return trafficType;
|
||||
}
|
||||
|
||||
public void setTrafficType(String trafficType) {
|
||||
this.trafficType = trafficType;
|
||||
}
|
||||
|
||||
public String getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(String updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,276 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/2 10:24
|
||||
* @description:
|
||||
*/
|
||||
public class LoginBean {
|
||||
|
||||
|
||||
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 token;
|
||||
private int id;
|
||||
private int roleId;
|
||||
private String uname;
|
||||
private String registerPhone;
|
||||
private String rname;
|
||||
private Object companyName;
|
||||
private Object account;
|
||||
private Object credit;
|
||||
private Object surplusCredit;
|
||||
private Object etcBalance;
|
||||
private Object oliBalance;
|
||||
private Object invoiceMoney;
|
||||
private String headportraitUrl;
|
||||
private String salt;
|
||||
private String jumpUrl;
|
||||
private Object auditStatus;
|
||||
private Object distance;
|
||||
private Object waybillNum;
|
||||
private Object idCardValidity;
|
||||
private Object driverValidity;
|
||||
private Object qualificationValidity;
|
||||
private Object isCar;
|
||||
private Object qrcodeUrl;
|
||||
|
||||
public String getToken() {
|
||||
return token == null ? "" : token;
|
||||
}
|
||||
|
||||
public void setToken(String token) {
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(int roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getUname() {
|
||||
return uname == null ? "" : uname;
|
||||
}
|
||||
|
||||
public void setUname(String uname) {
|
||||
this.uname = uname;
|
||||
}
|
||||
|
||||
public String getRegisterPhone() {
|
||||
return registerPhone == null ? "" : registerPhone;
|
||||
}
|
||||
|
||||
public void setRegisterPhone(String registerPhone) {
|
||||
this.registerPhone = registerPhone;
|
||||
}
|
||||
|
||||
public String getRname() {
|
||||
return rname == null ? "" : rname;
|
||||
}
|
||||
|
||||
public void setRname(String rname) {
|
||||
this.rname = rname;
|
||||
}
|
||||
|
||||
public Object getCompanyName() {
|
||||
return companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(Object companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public Object getAccount() {
|
||||
return account;
|
||||
}
|
||||
|
||||
public void setAccount(Object account) {
|
||||
this.account = account;
|
||||
}
|
||||
|
||||
public Object getCredit() {
|
||||
return credit;
|
||||
}
|
||||
|
||||
public void setCredit(Object credit) {
|
||||
this.credit = credit;
|
||||
}
|
||||
|
||||
public Object getSurplusCredit() {
|
||||
return surplusCredit;
|
||||
}
|
||||
|
||||
public void setSurplusCredit(Object surplusCredit) {
|
||||
this.surplusCredit = surplusCredit;
|
||||
}
|
||||
|
||||
public Object getEtcBalance() {
|
||||
return etcBalance;
|
||||
}
|
||||
|
||||
public void setEtcBalance(Object etcBalance) {
|
||||
this.etcBalance = etcBalance;
|
||||
}
|
||||
|
||||
public Object getOliBalance() {
|
||||
return oliBalance;
|
||||
}
|
||||
|
||||
public void setOliBalance(Object oliBalance) {
|
||||
this.oliBalance = oliBalance;
|
||||
}
|
||||
|
||||
public Object getInvoiceMoney() {
|
||||
return invoiceMoney;
|
||||
}
|
||||
|
||||
public void setInvoiceMoney(Object invoiceMoney) {
|
||||
this.invoiceMoney = invoiceMoney;
|
||||
}
|
||||
|
||||
public String getHeadportraitUrl() {
|
||||
return headportraitUrl == null ? "" : headportraitUrl;
|
||||
}
|
||||
|
||||
public void setHeadportraitUrl(String headportraitUrl) {
|
||||
this.headportraitUrl = headportraitUrl;
|
||||
}
|
||||
|
||||
public String getSalt() {
|
||||
return salt == null ? "" : salt;
|
||||
}
|
||||
|
||||
public void setSalt(String salt) {
|
||||
this.salt = salt;
|
||||
}
|
||||
|
||||
public String getJumpUrl() {
|
||||
return jumpUrl == null ? "" : jumpUrl;
|
||||
}
|
||||
|
||||
public void setJumpUrl(String jumpUrl) {
|
||||
this.jumpUrl = jumpUrl;
|
||||
}
|
||||
|
||||
public Object getAuditStatus() {
|
||||
return auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(Object auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public Object getDistance() {
|
||||
return distance;
|
||||
}
|
||||
|
||||
public void setDistance(Object distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
|
||||
public Object getWaybillNum() {
|
||||
return waybillNum;
|
||||
}
|
||||
|
||||
public void setWaybillNum(Object waybillNum) {
|
||||
this.waybillNum = waybillNum;
|
||||
}
|
||||
|
||||
public Object getIdCardValidity() {
|
||||
return idCardValidity;
|
||||
}
|
||||
|
||||
public void setIdCardValidity(Object idCardValidity) {
|
||||
this.idCardValidity = idCardValidity;
|
||||
}
|
||||
|
||||
public Object getDriverValidity() {
|
||||
return driverValidity;
|
||||
}
|
||||
|
||||
public void setDriverValidity(Object driverValidity) {
|
||||
this.driverValidity = driverValidity;
|
||||
}
|
||||
|
||||
public Object getQualificationValidity() {
|
||||
return qualificationValidity;
|
||||
}
|
||||
|
||||
public void setQualificationValidity(Object qualificationValidity) {
|
||||
this.qualificationValidity = qualificationValidity;
|
||||
}
|
||||
|
||||
public Object getIsCar() {
|
||||
return isCar;
|
||||
}
|
||||
|
||||
public void setIsCar(Object isCar) {
|
||||
this.isCar = isCar;
|
||||
}
|
||||
|
||||
public Object getQrcodeUrl() {
|
||||
return qrcodeUrl;
|
||||
}
|
||||
|
||||
public void setQrcodeUrl(Object qrcodeUrl) {
|
||||
this.qrcodeUrl = qrcodeUrl;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/6 14:28
|
||||
* @description:
|
||||
*/
|
||||
public class MsgBean {
|
||||
|
||||
|
||||
private int code;
|
||||
private String msg;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
public class OCRBankBean {
|
||||
|
||||
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 int id;
|
||||
private String url;
|
||||
private String bankCardNumber;
|
||||
private String validDate;
|
||||
private String bankCardType;
|
||||
private String bankName;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getBankCardNumber() {
|
||||
return bankCardNumber == null ? "" : bankCardNumber;
|
||||
}
|
||||
|
||||
public void setBankCardNumber(String bankCardNumber) {
|
||||
this.bankCardNumber = bankCardNumber;
|
||||
}
|
||||
|
||||
public String getValidDate() {
|
||||
return validDate == null ? "" : validDate;
|
||||
}
|
||||
|
||||
public void setValidDate(String validDate) {
|
||||
this.validDate = validDate;
|
||||
}
|
||||
|
||||
public String getBankCardType() {
|
||||
return bankCardType == null ? "" : bankCardType;
|
||||
}
|
||||
|
||||
public void setBankCardType(String bankCardType) {
|
||||
this.bankCardType = bankCardType;
|
||||
}
|
||||
|
||||
public String getBankName() {
|
||||
return bankName == null ? "" : bankName;
|
||||
}
|
||||
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/5 10:10
|
||||
* @description:身份证背面实体类
|
||||
*/
|
||||
public class OCRCardBackBean {
|
||||
|
||||
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 int id;
|
||||
private String url;
|
||||
private String startTime;
|
||||
private String endTime;
|
||||
private String organizationName;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getStartTime() {
|
||||
return startTime == null ? "" : startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(String startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
public String getEndTime() {
|
||||
return endTime == null ? "" : endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(String endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public String getOrganizationName() {
|
||||
return organizationName == null ? "" : organizationName;
|
||||
}
|
||||
|
||||
public void setOrganizationName(String organizationName) {
|
||||
this.organizationName = organizationName;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,131 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/5 10:05
|
||||
* @description:身份证实体类
|
||||
*/
|
||||
public class OCRCardBean {
|
||||
|
||||
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 int id;
|
||||
private String url;
|
||||
private String name;
|
||||
private String nation;
|
||||
private String address;
|
||||
private String cardId;
|
||||
private String birthday;
|
||||
private String sex;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getNation() {
|
||||
return nation == null ? "" : nation;
|
||||
}
|
||||
|
||||
public void setNation(String nation) {
|
||||
this.nation = nation;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getCardId() {
|
||||
return cardId == null ? "" : cardId;
|
||||
}
|
||||
|
||||
public void setCardId(String cardId) {
|
||||
this.cardId = cardId;
|
||||
}
|
||||
|
||||
public String getBirthday() {
|
||||
return birthday == null ? "" : birthday;
|
||||
}
|
||||
|
||||
public void setBirthday(String birthday) {
|
||||
this.birthday = birthday;
|
||||
}
|
||||
|
||||
public String getSex() {
|
||||
return sex == null ? "" : sex;
|
||||
}
|
||||
|
||||
public void setSex(String sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
}
|
||||
}
|
||||
+86
@@ -0,0 +1,86 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/5 10:21
|
||||
* @description:
|
||||
*/
|
||||
public class OCRDrivingLicenseBackBean {
|
||||
|
||||
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 int id;
|
||||
private String url;
|
||||
private String archivesName;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getArchivesName() {
|
||||
return archivesName == null ? "" : archivesName;
|
||||
}
|
||||
|
||||
public void setArchivesName(String archivesName) {
|
||||
this.archivesName = archivesName;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/5 10:21
|
||||
* @description:
|
||||
*/
|
||||
public class OCRDrivingLicenseBean {
|
||||
|
||||
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 int id;
|
||||
private String url;
|
||||
private String name;
|
||||
private String endTime;
|
||||
private String number;
|
||||
private String birthday;
|
||||
private String address;
|
||||
private String organizationName;
|
||||
private String country;
|
||||
private String firstTime;
|
||||
private String allowType;
|
||||
private String sex;
|
||||
private String startTime;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getEndTime() {
|
||||
return endTime == null ? "" : endTime;
|
||||
}
|
||||
|
||||
public void setEndTime(String endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
public String getNumber() {
|
||||
return number == null ? "" : number;
|
||||
}
|
||||
|
||||
public void setNumber(String number) {
|
||||
this.number = number;
|
||||
}
|
||||
|
||||
public String getBirthday() {
|
||||
return birthday == null ? "" : birthday;
|
||||
}
|
||||
|
||||
public void setBirthday(String birthday) {
|
||||
this.birthday = birthday;
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getOrganizationName() {
|
||||
return organizationName == null ? "" : organizationName;
|
||||
}
|
||||
|
||||
public void setOrganizationName(String organizationName) {
|
||||
this.organizationName = organizationName;
|
||||
}
|
||||
|
||||
public String getCountry() {
|
||||
return country == null ? "" : country;
|
||||
}
|
||||
|
||||
public void setCountry(String country) {
|
||||
this.country = country;
|
||||
}
|
||||
|
||||
public String getFirstTime() {
|
||||
return firstTime == null ? "" : firstTime;
|
||||
}
|
||||
|
||||
public void setFirstTime(String firstTime) {
|
||||
this.firstTime = firstTime;
|
||||
}
|
||||
|
||||
public String getAllowType() {
|
||||
return allowType == null ? "" : allowType;
|
||||
}
|
||||
|
||||
public void setAllowType(String allowType) {
|
||||
this.allowType = allowType;
|
||||
}
|
||||
|
||||
public String getSex() {
|
||||
return sex == null ? "" : sex;
|
||||
}
|
||||
|
||||
public void setSex(String sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getStartTime() {
|
||||
return startTime == null ? "" : startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(String startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
}
|
||||
}
|
||||
+186
@@ -0,0 +1,186 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/5 10:35
|
||||
* @description:ocr行驶证副页实体类
|
||||
*/
|
||||
public class OCRVehicleBackLicenseBean {
|
||||
|
||||
|
||||
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 int id;
|
||||
private String url;
|
||||
private String checkRecord;
|
||||
private String approvedCapacity;
|
||||
private String allCapacity;
|
||||
private String size;
|
||||
private String personCapacity;
|
||||
private String allAuality;
|
||||
private String fuelType;
|
||||
private String towAuality;
|
||||
private String remark;
|
||||
private String fileNumber;
|
||||
private String carNumber;
|
||||
private int licenseId;
|
||||
|
||||
public int getLicenseId() {
|
||||
return licenseId;
|
||||
}
|
||||
|
||||
public void setLicenseId(int licenseId) {
|
||||
this.licenseId = licenseId;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getCheckRecord() {
|
||||
return checkRecord == null ? "" : checkRecord;
|
||||
}
|
||||
|
||||
public void setCheckRecord(String checkRecord) {
|
||||
this.checkRecord = checkRecord;
|
||||
}
|
||||
|
||||
public String getApprovedCapacity() {
|
||||
return approvedCapacity == null ? "" : approvedCapacity;
|
||||
}
|
||||
|
||||
public void setApprovedCapacity(String approvedCapacity) {
|
||||
this.approvedCapacity = approvedCapacity;
|
||||
}
|
||||
|
||||
public String getAllCapacity() {
|
||||
return allCapacity == null ? "" : allCapacity;
|
||||
}
|
||||
|
||||
public void setAllCapacity(String allCapacity) {
|
||||
this.allCapacity = allCapacity;
|
||||
}
|
||||
|
||||
public String getSize() {
|
||||
return size == null ? "" : size;
|
||||
}
|
||||
|
||||
public void setSize(String size) {
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
public String getPersonCapacity() {
|
||||
return personCapacity == null ? "" : personCapacity;
|
||||
}
|
||||
|
||||
public void setPersonCapacity(String personCapacity) {
|
||||
this.personCapacity = personCapacity;
|
||||
}
|
||||
|
||||
public String getAllAuality() {
|
||||
return allAuality == null ? "" : allAuality;
|
||||
}
|
||||
|
||||
public void setAllAuality(String allAuality) {
|
||||
this.allAuality = allAuality;
|
||||
}
|
||||
|
||||
public String getFuelType() {
|
||||
return fuelType == null ? "" : fuelType;
|
||||
}
|
||||
|
||||
public void setFuelType(String fuelType) {
|
||||
this.fuelType = fuelType;
|
||||
}
|
||||
|
||||
public String getTowAuality() {
|
||||
return towAuality == null ? "" : towAuality;
|
||||
}
|
||||
|
||||
public void setTowAuality(String towAuality) {
|
||||
this.towAuality = towAuality;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark == null ? "" : remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getFileNumber() {
|
||||
return fileNumber == null ? "" : fileNumber;
|
||||
}
|
||||
|
||||
public void setFileNumber(String fileNumber) {
|
||||
this.fileNumber = fileNumber;
|
||||
}
|
||||
|
||||
public String getCarNumber() {
|
||||
return carNumber == null ? "" : carNumber;
|
||||
}
|
||||
|
||||
public void setCarNumber(String carNumber) {
|
||||
this.carNumber = carNumber;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/18 9:36
|
||||
* @description:
|
||||
*/
|
||||
public class OCRVehicleLicenseBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private String address;
|
||||
private int carId;
|
||||
private String carNumber;
|
||||
private String dateIssue;
|
||||
private String engineNumber;
|
||||
private int id;
|
||||
private String model;
|
||||
private String nature;
|
||||
private String organizationName;
|
||||
private String owner;
|
||||
private String reisterDate;
|
||||
private String type;
|
||||
private String url;
|
||||
private String vehicleNumber;
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public int getCarId() {
|
||||
return carId;
|
||||
}
|
||||
|
||||
public void setCarId(int carId) {
|
||||
this.carId = carId;
|
||||
}
|
||||
|
||||
public String getCarNumber() {
|
||||
return carNumber == null ? "" : carNumber;
|
||||
}
|
||||
|
||||
public void setCarNumber(String carNumber) {
|
||||
this.carNumber = carNumber;
|
||||
}
|
||||
|
||||
public String getDateIssue() {
|
||||
return dateIssue == null ? "" : dateIssue;
|
||||
}
|
||||
|
||||
public void setDateIssue(String dateIssue) {
|
||||
this.dateIssue = dateIssue;
|
||||
}
|
||||
|
||||
public String getEngineNumber() {
|
||||
return engineNumber == null ? "" : engineNumber;
|
||||
}
|
||||
|
||||
public void setEngineNumber(String engineNumber) {
|
||||
this.engineNumber = engineNumber;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return model == null ? "" : model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
this.model = model;
|
||||
}
|
||||
|
||||
public String getNature() {
|
||||
return nature == null ? "" : nature;
|
||||
}
|
||||
|
||||
public void setNature(String nature) {
|
||||
this.nature = nature;
|
||||
}
|
||||
|
||||
public String getOrganizationName() {
|
||||
return organizationName == null ? "" : organizationName;
|
||||
}
|
||||
|
||||
public void setOrganizationName(String organizationName) {
|
||||
this.organizationName = organizationName;
|
||||
}
|
||||
|
||||
public String getOwner() {
|
||||
return owner == null ? "" : owner;
|
||||
}
|
||||
|
||||
public void setOwner(String owner) {
|
||||
this.owner = owner;
|
||||
}
|
||||
|
||||
public String getReisterDate() {
|
||||
return reisterDate == null ? "" : reisterDate;
|
||||
}
|
||||
|
||||
public void setReisterDate(String reisterDate) {
|
||||
this.reisterDate = reisterDate;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type == null ? "" : type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
public String getVehicleNumber() {
|
||||
return vehicleNumber == null ? "" : vehicleNumber;
|
||||
}
|
||||
|
||||
public void setVehicleNumber(String vehicleNumber) {
|
||||
this.vehicleNumber = vehicleNumber;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
public class ORCIDBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private int res;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getRes() {
|
||||
return res;
|
||||
}
|
||||
|
||||
public void setRes(int res) {
|
||||
this.res = res;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private String address;
|
||||
private String birthday;
|
||||
private String cardId;
|
||||
private int id;
|
||||
private String name;
|
||||
private String nation;
|
||||
private String sex;
|
||||
private String url;
|
||||
|
||||
public String getAddress() {
|
||||
return address == null ? "" : address;
|
||||
}
|
||||
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
public String getBirthday() {
|
||||
return birthday == null ? "" : birthday;
|
||||
}
|
||||
|
||||
public void setBirthday(String birthday) {
|
||||
this.birthday = birthday;
|
||||
}
|
||||
|
||||
public String getCardId() {
|
||||
return cardId == null ? "" : cardId;
|
||||
}
|
||||
|
||||
public void setCardId(String cardId) {
|
||||
this.cardId = cardId;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getNation() {
|
||||
return nation == null ? "" : nation;
|
||||
}
|
||||
|
||||
public void setNation(String nation) {
|
||||
this.nation = nation;
|
||||
}
|
||||
|
||||
public String getSex() {
|
||||
return sex == null ? "" : sex;
|
||||
}
|
||||
|
||||
public void setSex(String sex) {
|
||||
this.sex = sex;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,231 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/6 10:40
|
||||
* @description:运单列表实体类
|
||||
*/
|
||||
public class OrderListBean {
|
||||
|
||||
|
||||
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 int num;
|
||||
private String totalFreight;
|
||||
private List<ListDTO> list;
|
||||
|
||||
public int getNum() {
|
||||
return num;
|
||||
}
|
||||
|
||||
public void setNum(int num) {
|
||||
this.num = num;
|
||||
}
|
||||
|
||||
public String getTotalFreight() {
|
||||
return totalFreight == null ? "" : totalFreight;
|
||||
}
|
||||
|
||||
public void setTotalFreight(String totalFreight) {
|
||||
this.totalFreight = totalFreight;
|
||||
}
|
||||
|
||||
public List<ListDTO> getList() {
|
||||
if (list == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<ListDTO> list) {
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
public static class ListDTO {
|
||||
private int orderId;
|
||||
private String orderNum;
|
||||
private String waybillNum;
|
||||
private String orderTime;
|
||||
private String totalFreight;
|
||||
private int dispatchType;
|
||||
private String effectiveTime;
|
||||
private String sendPutString;
|
||||
private String distance;
|
||||
private String loadingAddress;
|
||||
private String receiverAddress;
|
||||
private int waybillStatus;
|
||||
private int evaluation;
|
||||
private int complaint;
|
||||
private Object multipleScore;
|
||||
|
||||
public int getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public void setOrderId(int orderId) {
|
||||
this.orderId = orderId;
|
||||
}
|
||||
|
||||
public String getOrderNum() {
|
||||
return orderNum == null ? "" : orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(String orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public String getWaybillNum() {
|
||||
return waybillNum == null ? "" : waybillNum;
|
||||
}
|
||||
|
||||
public void setWaybillNum(String waybillNum) {
|
||||
this.waybillNum = waybillNum;
|
||||
}
|
||||
|
||||
public String getOrderTime() {
|
||||
return orderTime == null ? "" : orderTime;
|
||||
}
|
||||
|
||||
public void setOrderTime(String orderTime) {
|
||||
this.orderTime = orderTime;
|
||||
}
|
||||
|
||||
public String getTotalFreight() {
|
||||
return totalFreight == null ? "" : totalFreight;
|
||||
}
|
||||
|
||||
public void setTotalFreight(String totalFreight) {
|
||||
this.totalFreight = totalFreight;
|
||||
}
|
||||
|
||||
public int getDispatchType() {
|
||||
return dispatchType;
|
||||
}
|
||||
|
||||
public void setDispatchType(int dispatchType) {
|
||||
this.dispatchType = dispatchType;
|
||||
}
|
||||
|
||||
public String getEffectiveTime() {
|
||||
return effectiveTime == null ? "" : effectiveTime;
|
||||
}
|
||||
|
||||
public void setEffectiveTime(String effectiveTime) {
|
||||
this.effectiveTime = effectiveTime;
|
||||
}
|
||||
|
||||
public String getSendPutString() {
|
||||
return sendPutString == null ? "" : sendPutString;
|
||||
}
|
||||
|
||||
public void setSendPutString(String sendPutString) {
|
||||
this.sendPutString = sendPutString;
|
||||
}
|
||||
|
||||
public String getDistance() {
|
||||
return distance == null ? "" : distance;
|
||||
}
|
||||
|
||||
public void setDistance(String distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
|
||||
public String getLoadingAddress() {
|
||||
return loadingAddress == null ? "" : loadingAddress;
|
||||
}
|
||||
|
||||
public void setLoadingAddress(String loadingAddress) {
|
||||
this.loadingAddress = loadingAddress;
|
||||
}
|
||||
|
||||
public String getReceiverAddress() {
|
||||
return receiverAddress == null ? "" : receiverAddress;
|
||||
}
|
||||
|
||||
public void setReceiverAddress(String receiverAddress) {
|
||||
this.receiverAddress = receiverAddress;
|
||||
}
|
||||
|
||||
public int getWaybillStatus() {
|
||||
return waybillStatus;
|
||||
}
|
||||
|
||||
public void setWaybillStatus(int waybillStatus) {
|
||||
this.waybillStatus = waybillStatus;
|
||||
}
|
||||
|
||||
public int getEvaluation() {
|
||||
return evaluation;
|
||||
}
|
||||
|
||||
public void setEvaluation(int evaluation) {
|
||||
this.evaluation = evaluation;
|
||||
}
|
||||
|
||||
public int getComplaint() {
|
||||
return complaint;
|
||||
}
|
||||
|
||||
public void setComplaint(int complaint) {
|
||||
this.complaint = complaint;
|
||||
}
|
||||
|
||||
public Object getMultipleScore() {
|
||||
return multipleScore;
|
||||
}
|
||||
|
||||
public void setMultipleScore(Object multipleScore) {
|
||||
this.multipleScore = multipleScore;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import com.github.gzuliyujiang.wheelview.contract.TextProvider;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @ClassName SinglePickBean
|
||||
* @Author 用户
|
||||
* @Date 2022/4/22 17:00
|
||||
* @Description TODO
|
||||
*/
|
||||
public class SinglePickBean implements Serializable, TextProvider {
|
||||
|
||||
private String id;
|
||||
private String name;
|
||||
|
||||
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String provideText() {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,657 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2022/1/4 10:03
|
||||
* @description:
|
||||
*/
|
||||
public class Subject {
|
||||
|
||||
/**
|
||||
* 问题
|
||||
*/
|
||||
private String problem;
|
||||
|
||||
|
||||
/**
|
||||
* 答案
|
||||
*/
|
||||
private List<Answer> list;
|
||||
|
||||
/**
|
||||
* 分值
|
||||
*/
|
||||
private int score;
|
||||
|
||||
public String getProblem() {
|
||||
return problem == null ? "" : problem;
|
||||
}
|
||||
|
||||
public void setProblem(String problem) {
|
||||
this.problem = problem;
|
||||
}
|
||||
|
||||
public List<Answer> getList() {
|
||||
if (list == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
public void setList(List<Answer> list) {
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
public int getScore() {
|
||||
return score;
|
||||
}
|
||||
|
||||
public void setScore(int score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
private class Answer{
|
||||
|
||||
/**
|
||||
* 内容
|
||||
*/
|
||||
private String value;
|
||||
|
||||
/**
|
||||
* 是否正确
|
||||
*/
|
||||
private int isCorrect;
|
||||
|
||||
public String getValue() {
|
||||
return value == null ? "" : value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public int getIsCorrect() {
|
||||
return isCorrect;
|
||||
}
|
||||
|
||||
public void setIsCorrect(int isCorrect) {
|
||||
this.isCorrect = isCorrect;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
|
||||
public class Test {
|
||||
private String id;
|
||||
private String name;
|
||||
private String blog;
|
||||
|
||||
public Test(String id, String name, String blog) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.blog = blog;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id == null ? "" : id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getBlog() {
|
||||
return blog == null ? "" : blog;
|
||||
}
|
||||
|
||||
public void setBlog(String blog) {
|
||||
this.blog = blog;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,122 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/9/6 18:35
|
||||
* @description:
|
||||
*/
|
||||
public class UpAppBean {
|
||||
|
||||
private int code;
|
||||
private DataDTO data;
|
||||
private String msg;
|
||||
private int res;
|
||||
private boolean success;
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public DataDTO getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(DataDTO data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg == null ? "" : msg;
|
||||
}
|
||||
|
||||
public void setMsg(String msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public int getRes() {
|
||||
return res;
|
||||
}
|
||||
|
||||
public void setRes(int res) {
|
||||
this.res = res;
|
||||
}
|
||||
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private String content;
|
||||
private String delete;
|
||||
private String downloadUrl;
|
||||
private String force;
|
||||
private String source;
|
||||
private String type;
|
||||
private String version;
|
||||
|
||||
public String getContent() {
|
||||
return content == null ? "" : content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String getDelete() {
|
||||
return delete == null ? "" : delete;
|
||||
}
|
||||
|
||||
public void setDelete(String delete) {
|
||||
this.delete = delete;
|
||||
}
|
||||
|
||||
public String getDownloadUrl() {
|
||||
return downloadUrl == null ? "" : downloadUrl;
|
||||
}
|
||||
|
||||
public void setDownloadUrl(String downloadUrl) {
|
||||
this.downloadUrl = downloadUrl;
|
||||
}
|
||||
|
||||
public String getForce() {
|
||||
return force == null ? "" : force;
|
||||
}
|
||||
|
||||
public void setForce(String force) {
|
||||
this.force = force;
|
||||
}
|
||||
|
||||
public String getSource() {
|
||||
return source == null ? "" : source;
|
||||
}
|
||||
|
||||
public void setSource(String source) {
|
||||
this.source = source;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type == null ? "" : type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getVersion() {
|
||||
return version == null ? "" : version;
|
||||
}
|
||||
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,167 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/16 18:06
|
||||
* @description:
|
||||
*/
|
||||
public class UploadBean{
|
||||
|
||||
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 int id;
|
||||
private Object uuidName;
|
||||
private Object realName;
|
||||
private String sourcePath;
|
||||
private Object sourceSuffix;
|
||||
private Object sourceSize;
|
||||
private Object remark;
|
||||
private int createUser;
|
||||
private Object createTime;
|
||||
private Object folderid;
|
||||
private String name;
|
||||
private String url;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Object getUuidName() {
|
||||
return uuidName;
|
||||
}
|
||||
|
||||
public void setUuidName(Object uuidName) {
|
||||
this.uuidName = uuidName;
|
||||
}
|
||||
|
||||
public Object getRealName() {
|
||||
return realName;
|
||||
}
|
||||
|
||||
public void setRealName(Object realName) {
|
||||
this.realName = realName;
|
||||
}
|
||||
|
||||
public String getSourcePath() {
|
||||
return sourcePath == null ? "" : sourcePath;
|
||||
}
|
||||
|
||||
public void setSourcePath(String sourcePath) {
|
||||
this.sourcePath = sourcePath;
|
||||
}
|
||||
|
||||
public Object getSourceSuffix() {
|
||||
return sourceSuffix;
|
||||
}
|
||||
|
||||
public void setSourceSuffix(Object sourceSuffix) {
|
||||
this.sourceSuffix = sourceSuffix;
|
||||
}
|
||||
|
||||
public Object getSourceSize() {
|
||||
return sourceSize;
|
||||
}
|
||||
|
||||
public void setSourceSize(Object sourceSize) {
|
||||
this.sourceSize = sourceSize;
|
||||
}
|
||||
|
||||
public Object getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(Object remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public int getCreateUser() {
|
||||
return createUser;
|
||||
}
|
||||
|
||||
public void setCreateUser(int createUser) {
|
||||
this.createUser = createUser;
|
||||
}
|
||||
|
||||
public Object getCreateTime() {
|
||||
return createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(Object createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
|
||||
public Object getFolderid() {
|
||||
return folderid;
|
||||
}
|
||||
|
||||
public void setFolderid(Object folderid) {
|
||||
this.folderid = folderid;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name == null ? "" : name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url == null ? "" : url;
|
||||
}
|
||||
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,342 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
public class UserBean {
|
||||
|
||||
|
||||
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 token;
|
||||
private int id;
|
||||
private int roleId;
|
||||
private String uname;
|
||||
private String registerPhone;
|
||||
private String rname;
|
||||
private String companyName;
|
||||
private String account;
|
||||
private String credit;
|
||||
private Object surplusCredit;
|
||||
private String etcBalance;
|
||||
private String oliBalance;
|
||||
private Object invoiceMoney;
|
||||
private String headportraitUrl;
|
||||
private Object salt;
|
||||
private Object jumpUrl;
|
||||
private int auditStatus;
|
||||
private String distance;
|
||||
private int waybillNum;
|
||||
private Object orderNum;
|
||||
private String idCardValidity;
|
||||
private String driverValidity;
|
||||
private String qualificationValidity;
|
||||
private int isCar;
|
||||
private String qrcodeUrl;
|
||||
private int partyMemberStatus;
|
||||
private String partyMemberTime;
|
||||
private String partyMemberUrl;
|
||||
private Object partyMemberReason;
|
||||
private String goodLuck;
|
||||
private String freight;
|
||||
private String realAuthentication;
|
||||
|
||||
public String getToken() {
|
||||
return token == null ? "" : token;
|
||||
}
|
||||
|
||||
public void setToken(String token) {
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(int roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public String getUname() {
|
||||
return uname == null ? "" : uname;
|
||||
}
|
||||
|
||||
public void setUname(String uname) {
|
||||
this.uname = uname;
|
||||
}
|
||||
|
||||
public String getRegisterPhone() {
|
||||
return registerPhone == null ? "" : registerPhone;
|
||||
}
|
||||
|
||||
public void setRegisterPhone(String registerPhone) {
|
||||
this.registerPhone = registerPhone;
|
||||
}
|
||||
|
||||
public String getRname() {
|
||||
return rname == null ? "" : rname;
|
||||
}
|
||||
|
||||
public void setRname(String rname) {
|
||||
this.rname = rname;
|
||||
}
|
||||
|
||||
public String getCompanyName() {
|
||||
return companyName == null ? "" : companyName;
|
||||
}
|
||||
|
||||
public void setCompanyName(String companyName) {
|
||||
this.companyName = companyName;
|
||||
}
|
||||
|
||||
public String getAccount() {
|
||||
return account == null ? "" : account;
|
||||
}
|
||||
|
||||
public void setAccount(String account) {
|
||||
this.account = account;
|
||||
}
|
||||
|
||||
public String getCredit() {
|
||||
return credit == null ? "" : credit;
|
||||
}
|
||||
|
||||
public void setCredit(String credit) {
|
||||
this.credit = credit;
|
||||
}
|
||||
|
||||
public Object getSurplusCredit() {
|
||||
return surplusCredit;
|
||||
}
|
||||
|
||||
public void setSurplusCredit(Object surplusCredit) {
|
||||
this.surplusCredit = surplusCredit;
|
||||
}
|
||||
|
||||
public String getEtcBalance() {
|
||||
return etcBalance == null ? "" : etcBalance;
|
||||
}
|
||||
|
||||
public void setEtcBalance(String etcBalance) {
|
||||
this.etcBalance = etcBalance;
|
||||
}
|
||||
|
||||
public String getOliBalance() {
|
||||
return oliBalance == null ? "" : oliBalance;
|
||||
}
|
||||
|
||||
public void setOliBalance(String oliBalance) {
|
||||
this.oliBalance = oliBalance;
|
||||
}
|
||||
|
||||
public Object getInvoiceMoney() {
|
||||
return invoiceMoney;
|
||||
}
|
||||
|
||||
public void setInvoiceMoney(Object invoiceMoney) {
|
||||
this.invoiceMoney = invoiceMoney;
|
||||
}
|
||||
|
||||
public String getHeadportraitUrl() {
|
||||
return headportraitUrl == null ? "" : headportraitUrl;
|
||||
}
|
||||
|
||||
public void setHeadportraitUrl(String headportraitUrl) {
|
||||
this.headportraitUrl = headportraitUrl;
|
||||
}
|
||||
|
||||
public Object getSalt() {
|
||||
return salt;
|
||||
}
|
||||
|
||||
public void setSalt(Object salt) {
|
||||
this.salt = salt;
|
||||
}
|
||||
|
||||
public Object getJumpUrl() {
|
||||
return jumpUrl;
|
||||
}
|
||||
|
||||
public void setJumpUrl(Object jumpUrl) {
|
||||
this.jumpUrl = jumpUrl;
|
||||
}
|
||||
|
||||
public int getAuditStatus() {
|
||||
return auditStatus;
|
||||
}
|
||||
|
||||
public void setAuditStatus(int auditStatus) {
|
||||
this.auditStatus = auditStatus;
|
||||
}
|
||||
|
||||
public String getDistance() {
|
||||
return distance == null ? "" : distance;
|
||||
}
|
||||
|
||||
public void setDistance(String distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
|
||||
public int getWaybillNum() {
|
||||
return waybillNum;
|
||||
}
|
||||
|
||||
public void setWaybillNum(int waybillNum) {
|
||||
this.waybillNum = waybillNum;
|
||||
}
|
||||
|
||||
public Object getOrderNum() {
|
||||
return orderNum;
|
||||
}
|
||||
|
||||
public void setOrderNum(Object orderNum) {
|
||||
this.orderNum = orderNum;
|
||||
}
|
||||
|
||||
public String getIdCardValidity() {
|
||||
return idCardValidity == null ? "" : idCardValidity;
|
||||
}
|
||||
|
||||
public void setIdCardValidity(String idCardValidity) {
|
||||
this.idCardValidity = idCardValidity;
|
||||
}
|
||||
|
||||
public String getDriverValidity() {
|
||||
return driverValidity == null ? "" : driverValidity;
|
||||
}
|
||||
|
||||
public void setDriverValidity(String driverValidity) {
|
||||
this.driverValidity = driverValidity;
|
||||
}
|
||||
|
||||
public String getQualificationValidity() {
|
||||
return qualificationValidity == null ? "" : qualificationValidity;
|
||||
}
|
||||
|
||||
public void setQualificationValidity(String qualificationValidity) {
|
||||
this.qualificationValidity = qualificationValidity;
|
||||
}
|
||||
|
||||
public int getIsCar() {
|
||||
return isCar;
|
||||
}
|
||||
|
||||
public void setIsCar(int isCar) {
|
||||
this.isCar = isCar;
|
||||
}
|
||||
|
||||
public String getQrcodeUrl() {
|
||||
return qrcodeUrl == null ? "" : qrcodeUrl;
|
||||
}
|
||||
|
||||
public void setQrcodeUrl(String qrcodeUrl) {
|
||||
this.qrcodeUrl = qrcodeUrl;
|
||||
}
|
||||
|
||||
public int getPartyMemberStatus() {
|
||||
return partyMemberStatus;
|
||||
}
|
||||
|
||||
public void setPartyMemberStatus(int partyMemberStatus) {
|
||||
this.partyMemberStatus = partyMemberStatus;
|
||||
}
|
||||
|
||||
public String getPartyMemberTime() {
|
||||
return partyMemberTime == null ? "" : partyMemberTime;
|
||||
}
|
||||
|
||||
public void setPartyMemberTime(String partyMemberTime) {
|
||||
this.partyMemberTime = partyMemberTime;
|
||||
}
|
||||
|
||||
public String getPartyMemberUrl() {
|
||||
return partyMemberUrl == null ? "" : partyMemberUrl;
|
||||
}
|
||||
|
||||
public void setPartyMemberUrl(String partyMemberUrl) {
|
||||
this.partyMemberUrl = partyMemberUrl;
|
||||
}
|
||||
|
||||
public Object getPartyMemberReason() {
|
||||
return partyMemberReason;
|
||||
}
|
||||
|
||||
public void setPartyMemberReason(Object partyMemberReason) {
|
||||
this.partyMemberReason = partyMemberReason;
|
||||
}
|
||||
|
||||
public String getGoodLuck() {
|
||||
return goodLuck == null ? "" : goodLuck;
|
||||
}
|
||||
|
||||
public void setGoodLuck(String goodLuck) {
|
||||
this.goodLuck = goodLuck;
|
||||
}
|
||||
|
||||
public String getFreight() {
|
||||
return freight == null ? "" : freight;
|
||||
}
|
||||
|
||||
public void setFreight(String freight) {
|
||||
this.freight = freight;
|
||||
}
|
||||
|
||||
public String getRealAuthentication() {
|
||||
return realAuthentication == null ? "" : realAuthentication;
|
||||
}
|
||||
|
||||
public void setRealAuthentication(String realAuthentication) {
|
||||
this.realAuthentication = realAuthentication;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/28 18:51
|
||||
* @description:
|
||||
*/
|
||||
public class WNewsBean {
|
||||
|
||||
private int res;
|
||||
private int code;
|
||||
private boolean success;
|
||||
private String msg;
|
||||
private List<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 List<DataDTO> getData() {
|
||||
if (data == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(List<DataDTO> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private int waybillId;
|
||||
private int attitudeScore;
|
||||
private int multipleScore;
|
||||
private String content;
|
||||
private String[] listImgUrl;
|
||||
private int appraiserId;
|
||||
private int type;
|
||||
private int folderId;
|
||||
private int status;
|
||||
|
||||
public int getWaybillId() {
|
||||
return waybillId;
|
||||
}
|
||||
|
||||
public void setWaybillId(int waybillId) {
|
||||
this.waybillId = waybillId;
|
||||
}
|
||||
|
||||
public int getAttitudeScore() {
|
||||
return attitudeScore;
|
||||
}
|
||||
|
||||
public void setAttitudeScore(int attitudeScore) {
|
||||
this.attitudeScore = attitudeScore;
|
||||
}
|
||||
|
||||
public int getMultipleScore() {
|
||||
return multipleScore;
|
||||
}
|
||||
|
||||
public void setMultipleScore(int multipleScore) {
|
||||
this.multipleScore = multipleScore;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content == null ? "" : content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public String[] getListImgUrl() {
|
||||
return listImgUrl;
|
||||
}
|
||||
|
||||
public void setListImgUrl(String[] listImgUrl) {
|
||||
this.listImgUrl = listImgUrl;
|
||||
}
|
||||
|
||||
public int getAppraiserId() {
|
||||
return appraiserId;
|
||||
}
|
||||
|
||||
public void setAppraiserId(int appraiserId) {
|
||||
this.appraiserId = appraiserId;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(int type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public int getFolderId() {
|
||||
return folderId;
|
||||
}
|
||||
|
||||
public void setFolderId(int folderId) {
|
||||
this.folderId = folderId;
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,227 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class XiaoXiBean {
|
||||
|
||||
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 List<RecordsDTO> records;
|
||||
private int total;
|
||||
private int size;
|
||||
private int current;
|
||||
private List<?> orders;
|
||||
private boolean searchCount;
|
||||
private int pages;
|
||||
|
||||
public List<RecordsDTO> getRecords() {
|
||||
if (records == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return records;
|
||||
}
|
||||
|
||||
public void setRecords(List<RecordsDTO> records) {
|
||||
this.records = records;
|
||||
}
|
||||
|
||||
public int getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
public void setTotal(int total) {
|
||||
this.total = total;
|
||||
}
|
||||
|
||||
public int getSize() {
|
||||
return size;
|
||||
}
|
||||
|
||||
public void setSize(int size) {
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
public int getCurrent() {
|
||||
return current;
|
||||
}
|
||||
|
||||
public void setCurrent(int current) {
|
||||
this.current = current;
|
||||
}
|
||||
|
||||
public List<?> getOrders() {
|
||||
if (orders == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return orders;
|
||||
}
|
||||
|
||||
public void setOrders(List<?> orders) {
|
||||
this.orders = orders;
|
||||
}
|
||||
|
||||
public boolean isSearchCount() {
|
||||
return searchCount;
|
||||
}
|
||||
|
||||
public void setSearchCount(boolean searchCount) {
|
||||
this.searchCount = searchCount;
|
||||
}
|
||||
|
||||
public int getPages() {
|
||||
return pages;
|
||||
}
|
||||
|
||||
public void setPages(int pages) {
|
||||
this.pages = pages;
|
||||
}
|
||||
|
||||
public static class RecordsDTO {
|
||||
private int id;
|
||||
private int cate;
|
||||
private String content;
|
||||
private int isRead;
|
||||
private int forwordType;
|
||||
private int forwordId;
|
||||
private int receiverId;
|
||||
private String receiverName;
|
||||
private int createUser;
|
||||
private String createUserName;
|
||||
private String createTime;
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(int id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public int getCate() {
|
||||
return cate;
|
||||
}
|
||||
|
||||
public void setCate(int cate) {
|
||||
this.cate = cate;
|
||||
}
|
||||
|
||||
public String getContent() {
|
||||
return content == null ? "" : content;
|
||||
}
|
||||
|
||||
public void setContent(String content) {
|
||||
this.content = content;
|
||||
}
|
||||
|
||||
public int getIsRead() {
|
||||
return isRead;
|
||||
}
|
||||
|
||||
public void setIsRead(int isRead) {
|
||||
this.isRead = isRead;
|
||||
}
|
||||
|
||||
public int getForwordType() {
|
||||
return forwordType;
|
||||
}
|
||||
|
||||
public void setForwordType(int forwordType) {
|
||||
this.forwordType = forwordType;
|
||||
}
|
||||
|
||||
public int getForwordId() {
|
||||
return forwordId;
|
||||
}
|
||||
|
||||
public void setForwordId(int forwordId) {
|
||||
this.forwordId = forwordId;
|
||||
}
|
||||
|
||||
public int getReceiverId() {
|
||||
return receiverId;
|
||||
}
|
||||
|
||||
public void setReceiverId(int receiverId) {
|
||||
this.receiverId = receiverId;
|
||||
}
|
||||
|
||||
public String getReceiverName() {
|
||||
return receiverName == null ? "" : receiverName;
|
||||
}
|
||||
|
||||
public void setReceiverName(String receiverName) {
|
||||
this.receiverName = receiverName;
|
||||
}
|
||||
|
||||
public int getCreateUser() {
|
||||
return createUser;
|
||||
}
|
||||
|
||||
public void setCreateUser(int createUser) {
|
||||
this.createUser = createUser;
|
||||
}
|
||||
|
||||
public String getCreateUserName() {
|
||||
return createUserName == null ? "" : createUserName;
|
||||
}
|
||||
|
||||
public void setCreateUserName(String createUserName) {
|
||||
this.createUserName = createUserName;
|
||||
}
|
||||
|
||||
public String getCreateTime() {
|
||||
return createTime == null ? "" : createTime;
|
||||
}
|
||||
|
||||
public void setCreateTime(String createTime) {
|
||||
this.createTime = createTime;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
package com.arpa.hndahesudintocctmsdriver.bean;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hlh
|
||||
* @version 1.0.0
|
||||
* @date 2021/8/28 14:58
|
||||
* @description:
|
||||
*/
|
||||
public class XiaoXiListBean {
|
||||
|
||||
private int res;
|
||||
private int code;
|
||||
private boolean success;
|
||||
private String msg;
|
||||
private List<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 List<DataDTO> getData() {
|
||||
if (data == null) {
|
||||
return new ArrayList<>();
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(List<DataDTO> data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public static class DataDTO {
|
||||
private int count;
|
||||
private String messageTypeName;
|
||||
private int vcode;
|
||||
|
||||
public int getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(int count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public String getMessageTypeName() {
|
||||
return messageTypeName == null ? "" : messageTypeName;
|
||||
}
|
||||
|
||||
public void setMessageTypeName(String messageTypeName) {
|
||||
this.messageTypeName = messageTypeName;
|
||||
}
|
||||
|
||||
public int getVcode() {
|
||||
return vcode;
|
||||
}
|
||||
|
||||
public void setVcode(int vcode) {
|
||||
this.vcode = vcode;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user