|
@@ -10,6 +10,80 @@ import java.util.Date;
|
|
|
* @Date 2023 08 07 11 51
|
|
|
**/
|
|
|
public class OrderDto {
|
|
|
+ /**
|
|
|
+ * 边民或组长取消订单(0=未取消,1=已取消)
|
|
|
+ */
|
|
|
+ private Integer cancelPeople;
|
|
|
+
|
|
|
+ public Integer getCancelPeople() {
|
|
|
+ return cancelPeople;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCancelPeople(Integer cancelPeople) {
|
|
|
+ this.cancelPeople = cancelPeople;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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;
|
|
|
|