|
@@ -1,46 +1,13 @@
|
|
package com.pj.api.dto;
|
|
package com.pj.api.dto;
|
|
|
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
-
|
|
|
|
|
|
+import java.io.Serializable;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 一级市场订单表
|
|
|
|
* @Author Mechrevo
|
|
* @Author Mechrevo
|
|
- * @Date 2023 08 07 11 51
|
|
|
|
|
|
+ * @Date 2023 08 30 09 12
|
|
**/
|
|
**/
|
|
-public class OrderDto {
|
|
|
|
- /**
|
|
|
|
- * 边民或组长取消订单(0=未取消,1=已取消)
|
|
|
|
- */
|
|
|
|
- private Integer cancelPeople;
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 申报单号
|
|
|
|
- */
|
|
|
|
- private Long applyNo;
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- public Long getApplyNo() {
|
|
|
|
- return applyNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setApplyNo(Long applyNo) {
|
|
|
|
- this.applyNo = applyNo;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getCancelPeople() {
|
|
|
|
- return cancelPeople;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCancelPeople(Integer cancelPeople) {
|
|
|
|
- this.cancelPeople = cancelPeople;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public OrderDto() {
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+public class OrderDto implements Serializable {
|
|
private Long id;
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -68,7 +35,7 @@ public class OrderDto {
|
|
private Long groupId;
|
|
private Long groupId;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 商品ID
|
|
|
|
|
|
+ * 过审商品id[goodstransitid]
|
|
*/
|
|
*/
|
|
private Long goodsId;
|
|
private Long goodsId;
|
|
|
|
|
|
@@ -115,7 +82,6 @@ public class OrderDto {
|
|
/**
|
|
/**
|
|
* 交易时间
|
|
* 交易时间
|
|
*/
|
|
*/
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
private Date tradeTime;
|
|
private Date tradeTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -124,6 +90,11 @@ public class OrderDto {
|
|
private Integer tradeStatus;
|
|
private Integer tradeStatus;
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 边民或组长取消订单(0=未取消,1=已取消)
|
|
|
|
+ */
|
|
|
|
+ private Integer cancelPeople;
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 支付方式(0=金融互助,1=现金刷卡)
|
|
* 支付方式(0=金融互助,1=现金刷卡)
|
|
*/
|
|
*/
|
|
private Integer payType;
|
|
private Integer payType;
|
|
@@ -144,20 +115,6 @@ 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;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
* 对账人
|
|
* 对账人
|
|
*/
|
|
*/
|
|
private Long settleUserId;
|
|
private Long settleUserId;
|
|
@@ -167,6 +124,8 @@ public class OrderDto {
|
|
*/
|
|
*/
|
|
private Long recordUserId;
|
|
private Long recordUserId;
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 对账时间
|
|
* 对账时间
|
|
*/
|
|
*/
|
|
@@ -251,11 +210,6 @@ public class OrderDto {
|
|
private Date peopleConfirmTime;
|
|
private Date peopleConfirmTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 一级市场商户确认(0=待确认,1=是,2=否)[j]
|
|
|
|
- */
|
|
|
|
- private Integer enterpriseConfirm;
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
* 边民进口申报确认状态(0=待确认,1=是)
|
|
* 边民进口申报确认状态(0=待确认,1=是)
|
|
*/
|
|
*/
|
|
private Integer applyConfirmStatus;
|
|
private Integer applyConfirmStatus;
|
|
@@ -265,6 +219,11 @@ public class OrderDto {
|
|
private Date applyConfirmTime;
|
|
private Date applyConfirmTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 一级市场商户确认(0=待确认,1=是)[j]
|
|
|
|
+ */
|
|
|
|
+ private Integer enterpriseConfirm;
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 是否接单
|
|
* 是否接单
|
|
*/
|
|
*/
|
|
private String pick;
|
|
private String pick;
|
|
@@ -272,7 +231,6 @@ public class OrderDto {
|
|
/**
|
|
/**
|
|
* 接单时间
|
|
* 接单时间
|
|
*/
|
|
*/
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss SSS")
|
|
|
|
private Date pickTime;
|
|
private Date pickTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -296,14 +254,13 @@ public class OrderDto {
|
|
private String sendTime;
|
|
private String sendTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 大订单ID
|
|
|
|
|
|
+ * 对应合作社的拼单订单ID
|
|
*/
|
|
*/
|
|
private Long collageOrdersId;
|
|
private Long collageOrdersId;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 创建时间
|
|
* 创建时间
|
|
*/
|
|
*/
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
private Date createTime;
|
|
private Date createTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -319,7 +276,6 @@ public class OrderDto {
|
|
/**
|
|
/**
|
|
* 更新时间
|
|
* 更新时间
|
|
*/
|
|
*/
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -343,10 +299,26 @@ public class OrderDto {
|
|
private Integer finishStatus;
|
|
private Integer finishStatus;
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 申报单号
|
|
|
|
+ */
|
|
|
|
+ private Long applyNo;
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 是否转售(0=未转售,1=已转售)
|
|
* 是否转售(0=未转售,1=已转售)
|
|
*/
|
|
*/
|
|
private Integer resaleStatus;
|
|
private Integer resaleStatus;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 叫车状态[默认是0=待叫车,1=已叫车,2=完成叫车]
|
|
|
|
+ */
|
|
|
|
+ private Integer callCarStatus;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 商品单位
|
|
|
|
+ */
|
|
|
|
+ private String goodsUnit;
|
|
|
|
+
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -483,6 +455,14 @@ public class OrderDto {
|
|
this.tradeStatus = tradeStatus;
|
|
this.tradeStatus = tradeStatus;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Integer getCancelPeople() {
|
|
|
|
+ return cancelPeople;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCancelPeople(Integer cancelPeople) {
|
|
|
|
+ this.cancelPeople = cancelPeople;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getPayType() {
|
|
public Integer getPayType() {
|
|
return payType;
|
|
return payType;
|
|
}
|
|
}
|
|
@@ -667,6 +647,22 @@ public class OrderDto {
|
|
this.peopleConfirmTime = peopleConfirmTime;
|
|
this.peopleConfirmTime = peopleConfirmTime;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Integer getApplyConfirmStatus() {
|
|
|
|
+ return applyConfirmStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApplyConfirmStatus(Integer applyConfirmStatus) {
|
|
|
|
+ this.applyConfirmStatus = applyConfirmStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Date getApplyConfirmTime() {
|
|
|
|
+ return applyConfirmTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApplyConfirmTime(Date applyConfirmTime) {
|
|
|
|
+ this.applyConfirmTime = applyConfirmTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getEnterpriseConfirm() {
|
|
public Integer getEnterpriseConfirm() {
|
|
return enterpriseConfirm;
|
|
return enterpriseConfirm;
|
|
}
|
|
}
|
|
@@ -795,6 +791,14 @@ public class OrderDto {
|
|
this.finishStatus = finishStatus;
|
|
this.finishStatus = finishStatus;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Long getApplyNo() {
|
|
|
|
+ return applyNo;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setApplyNo(Long applyNo) {
|
|
|
|
+ this.applyNo = applyNo;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getResaleStatus() {
|
|
public Integer getResaleStatus() {
|
|
return resaleStatus;
|
|
return resaleStatus;
|
|
}
|
|
}
|
|
@@ -803,19 +807,88 @@ public class OrderDto {
|
|
this.resaleStatus = resaleStatus;
|
|
this.resaleStatus = resaleStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public Integer getApplyConfirmStatus() {
|
|
|
|
- return applyConfirmStatus;
|
|
|
|
|
|
+ public Integer getCallCarStatus() {
|
|
|
|
+ return callCarStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setApplyConfirmStatus(Integer applyConfirmStatus) {
|
|
|
|
- this.applyConfirmStatus = applyConfirmStatus;
|
|
|
|
|
|
+ public void setCallCarStatus(Integer callCarStatus) {
|
|
|
|
+ this.callCarStatus = callCarStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public Date getApplyConfirmTime() {
|
|
|
|
- return applyConfirmTime;
|
|
|
|
|
|
+ public String getGoodsUnit() {
|
|
|
|
+ return goodsUnit;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setApplyConfirmTime(Date applyConfirmTime) {
|
|
|
|
|
|
+ public void setGoodsUnit(String goodsUnit) {
|
|
|
|
+ this.goodsUnit = goodsUnit;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public OrderDto(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, Integer cancelPeople, Integer 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, Date applyTime, String applyResult, String applyFailReason, String distribution, Integer peopleConfirmStatus, Integer peopleConfirmType, Date peopleConfirmTime, Integer applyConfirmStatus, Date applyConfirmTime, Integer enterpriseConfirm, String pick, Date pickTime, Long shopId, String shopName, Integer send, String sendTime, Long collageOrdersId, Date createTime, Long createBy, String createName, Date updateTime, Long updateBy, String updateName, Integer deleteStatus, Integer finishStatus, Long applyNo, Integer resaleStatus, Integer callCarStatus, String goodsUnit) {
|
|
|
|
+ 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.cancelPeople = cancelPeople;
|
|
|
|
+ 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.peopleConfirmStatus = peopleConfirmStatus;
|
|
|
|
+ this.peopleConfirmType = peopleConfirmType;
|
|
|
|
+ this.peopleConfirmTime = peopleConfirmTime;
|
|
|
|
+ this.applyConfirmStatus = applyConfirmStatus;
|
|
this.applyConfirmTime = applyConfirmTime;
|
|
this.applyConfirmTime = applyConfirmTime;
|
|
|
|
+ this.enterpriseConfirm = enterpriseConfirm;
|
|
|
|
+ this.pick = pick;
|
|
|
|
+ this.pickTime = pickTime;
|
|
|
|
+ this.shopId = shopId;
|
|
|
|
+ this.shopName = shopName;
|
|
|
|
+ this.send = send;
|
|
|
|
+ this.sendTime = sendTime;
|
|
|
|
+ this.collageOrdersId = collageOrdersId;
|
|
|
|
+ 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.applyNo = applyNo;
|
|
|
|
+ this.resaleStatus = resaleStatus;
|
|
|
|
+ this.callCarStatus = callCarStatus;
|
|
|
|
+ this.goodsUnit = goodsUnit;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public OrderDto() {
|
|
}
|
|
}
|
|
}
|
|
}
|