|
@@ -26,64 +26,6 @@ public class OrderDto {
|
|
public OrderDto() {
|
|
public OrderDto() {
|
|
}
|
|
}
|
|
|
|
|
|
- public OrderDto(Integer cancelPeople, Long id, Long tradeAreaId, String tradeAreaName, String addressIds, Long saleMainId, Long groupId, Long goodsId, String tradeNo, Long buyUserId, String buyUserName, String buyUserType, Long enterpriseId, String enterpriseName, Double totalWeight, Double totalPrice, Date tradeTime, Integer tradeStatus, String payType, String settleTime, Double realPrice, Double shouldPrice, Long settleUserId, Long recordUserId, String recordTime, String record, String refundReason, String refundTime, String receiveName, String receivePhone, String receiveAddress, String outTime, String goodsNames, Integer apply, String applyTime, String applyResult, String applyFailReason, String distribution, Integer peopleConfirm, Integer enterpriseConfirm, String pick, Date pickTime, Long shopId, String shopName, Integer send, String sendTime, Long levelTwoOrderId, Date createTime, Long createBy, String createName, Date updateTime, Long updateBy, String updateName, Integer deleteStatus, Integer finishStatus, Integer resaleStatus) {
|
|
|
|
- this.cancelPeople = cancelPeople;
|
|
|
|
- this.id = id;
|
|
|
|
- this.tradeAreaId = tradeAreaId;
|
|
|
|
- this.tradeAreaName = tradeAreaName;
|
|
|
|
- this.addressIds = addressIds;
|
|
|
|
- this.saleMainId = saleMainId;
|
|
|
|
- this.groupId = groupId;
|
|
|
|
- this.goodsId = goodsId;
|
|
|
|
- this.tradeNo = tradeNo;
|
|
|
|
- this.buyUserId = buyUserId;
|
|
|
|
- this.buyUserName = buyUserName;
|
|
|
|
- this.buyUserType = buyUserType;
|
|
|
|
- this.enterpriseId = enterpriseId;
|
|
|
|
- this.enterpriseName = enterpriseName;
|
|
|
|
- this.totalWeight = totalWeight;
|
|
|
|
- this.totalPrice = totalPrice;
|
|
|
|
- this.tradeTime = tradeTime;
|
|
|
|
- this.tradeStatus = tradeStatus;
|
|
|
|
- this.payType = payType;
|
|
|
|
- this.settleTime = settleTime;
|
|
|
|
- this.realPrice = realPrice;
|
|
|
|
- this.shouldPrice = shouldPrice;
|
|
|
|
- this.settleUserId = settleUserId;
|
|
|
|
- this.recordUserId = recordUserId;
|
|
|
|
- this.recordTime = recordTime;
|
|
|
|
- this.record = record;
|
|
|
|
- this.refundReason = refundReason;
|
|
|
|
- this.refundTime = refundTime;
|
|
|
|
- this.receiveName = receiveName;
|
|
|
|
- this.receivePhone = receivePhone;
|
|
|
|
- this.receiveAddress = receiveAddress;
|
|
|
|
- this.outTime = outTime;
|
|
|
|
- this.goodsNames = goodsNames;
|
|
|
|
- this.apply = apply;
|
|
|
|
- this.applyTime = applyTime;
|
|
|
|
- this.applyResult = applyResult;
|
|
|
|
- this.applyFailReason = applyFailReason;
|
|
|
|
- this.distribution = distribution;
|
|
|
|
- this.peopleConfirm = peopleConfirm;
|
|
|
|
- this.enterpriseConfirm = enterpriseConfirm;
|
|
|
|
- this.pick = pick;
|
|
|
|
- this.pickTime = pickTime;
|
|
|
|
- this.shopId = shopId;
|
|
|
|
- this.shopName = shopName;
|
|
|
|
- this.send = send;
|
|
|
|
- this.sendTime = sendTime;
|
|
|
|
- this.levelTwoOrderId = levelTwoOrderId;
|
|
|
|
- this.createTime = createTime;
|
|
|
|
- this.createBy = createBy;
|
|
|
|
- this.createName = createName;
|
|
|
|
- this.updateTime = updateTime;
|
|
|
|
- this.updateBy = updateBy;
|
|
|
|
- this.updateName = updateName;
|
|
|
|
- this.deleteStatus = deleteStatus;
|
|
|
|
- this.finishStatus = finishStatus;
|
|
|
|
- this.resaleStatus = resaleStatus;
|
|
|
|
- }
|
|
|
|
|
|
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
@@ -188,6 +130,79 @@ public class OrderDto {
|
|
private Double shouldPrice;
|
|
private Double shouldPrice;
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 叫车状态[默认是0=待叫车,1=已叫车,2=完成叫车]
|
|
|
|
+ */
|
|
|
|
+ private Integer callCarStatus;
|
|
|
|
+
|
|
|
|
+ public Integer getCallCarStatus() {
|
|
|
|
+ return callCarStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCallCarStatus(Integer callCarStatus) {
|
|
|
|
+ this.callCarStatus = callCarStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public OrderDto(Integer cancelPeople, Long id, Long tradeAreaId, String tradeAreaName, String addressIds, Long saleMainId, Long groupId, Long goodsId, String tradeNo, Long buyUserId, String buyUserName, String buyUserType, Long enterpriseId, String enterpriseName, Double totalWeight, Double totalPrice, Date tradeTime, Integer tradeStatus, String payType, String settleTime, Double realPrice, Double shouldPrice, Integer callCarStatus, Long settleUserId, Long recordUserId, String recordTime, String record, String refundReason, String refundTime, String receiveName, String receivePhone, String receiveAddress, String outTime, String goodsNames, Integer apply, String applyTime, String applyResult, String applyFailReason, String distribution, Integer peopleConfirm, Integer enterpriseConfirm, String pick, Date pickTime, Long shopId, String shopName, Integer send, String sendTime, Long levelTwoOrderId, Date createTime, Long createBy, String createName, Date updateTime, Long updateBy, String updateName, Integer deleteStatus, Integer finishStatus, Integer resaleStatus) {
|
|
|
|
+ this.cancelPeople = cancelPeople;
|
|
|
|
+ this.id = id;
|
|
|
|
+ this.tradeAreaId = tradeAreaId;
|
|
|
|
+ this.tradeAreaName = tradeAreaName;
|
|
|
|
+ this.addressIds = addressIds;
|
|
|
|
+ this.saleMainId = saleMainId;
|
|
|
|
+ this.groupId = groupId;
|
|
|
|
+ this.goodsId = goodsId;
|
|
|
|
+ this.tradeNo = tradeNo;
|
|
|
|
+ this.buyUserId = buyUserId;
|
|
|
|
+ this.buyUserName = buyUserName;
|
|
|
|
+ this.buyUserType = buyUserType;
|
|
|
|
+ this.enterpriseId = enterpriseId;
|
|
|
|
+ this.enterpriseName = enterpriseName;
|
|
|
|
+ this.totalWeight = totalWeight;
|
|
|
|
+ this.totalPrice = totalPrice;
|
|
|
|
+ this.tradeTime = tradeTime;
|
|
|
|
+ this.tradeStatus = tradeStatus;
|
|
|
|
+ this.payType = payType;
|
|
|
|
+ this.settleTime = settleTime;
|
|
|
|
+ this.realPrice = realPrice;
|
|
|
|
+ this.shouldPrice = shouldPrice;
|
|
|
|
+ this.callCarStatus = callCarStatus;
|
|
|
|
+ this.settleUserId = settleUserId;
|
|
|
|
+ this.recordUserId = recordUserId;
|
|
|
|
+ this.recordTime = recordTime;
|
|
|
|
+ this.record = record;
|
|
|
|
+ this.refundReason = refundReason;
|
|
|
|
+ this.refundTime = refundTime;
|
|
|
|
+ this.receiveName = receiveName;
|
|
|
|
+ this.receivePhone = receivePhone;
|
|
|
|
+ this.receiveAddress = receiveAddress;
|
|
|
|
+ this.outTime = outTime;
|
|
|
|
+ this.goodsNames = goodsNames;
|
|
|
|
+ this.apply = apply;
|
|
|
|
+ this.applyTime = applyTime;
|
|
|
|
+ this.applyResult = applyResult;
|
|
|
|
+ this.applyFailReason = applyFailReason;
|
|
|
|
+ this.distribution = distribution;
|
|
|
|
+ this.peopleConfirm = peopleConfirm;
|
|
|
|
+ this.enterpriseConfirm = enterpriseConfirm;
|
|
|
|
+ this.pick = pick;
|
|
|
|
+ this.pickTime = pickTime;
|
|
|
|
+ this.shopId = shopId;
|
|
|
|
+ this.shopName = shopName;
|
|
|
|
+ this.send = send;
|
|
|
|
+ this.sendTime = sendTime;
|
|
|
|
+ this.levelTwoOrderId = levelTwoOrderId;
|
|
|
|
+ this.createTime = createTime;
|
|
|
|
+ this.createBy = createBy;
|
|
|
|
+ this.createName = createName;
|
|
|
|
+ this.updateTime = updateTime;
|
|
|
|
+ this.updateBy = updateBy;
|
|
|
|
+ this.updateName = updateName;
|
|
|
|
+ this.deleteStatus = deleteStatus;
|
|
|
|
+ this.finishStatus = finishStatus;
|
|
|
|
+ this.resaleStatus = resaleStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 对账人
|
|
* 对账人
|
|
*/
|
|
*/
|
|
private Long settleUserId;
|
|
private Long settleUserId;
|