|
@@ -7,6 +7,7 @@ import java.util.Date;
|
|
|
* @Author Mechrevo
|
|
|
* @Date 2023 08 30 09 12
|
|
|
**/
|
|
|
+
|
|
|
public class OrderDto implements Serializable {
|
|
|
private Long id;
|
|
|
|
|
@@ -891,4 +892,73 @@ public class OrderDto implements Serializable {
|
|
|
|
|
|
public OrderDto() {
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "OrderDto{" +
|
|
|
+ "id=" + id +
|
|
|
+ ", tradeAreaId=" + tradeAreaId +
|
|
|
+ ", tradeAreaName='" + tradeAreaName + '\'' +
|
|
|
+ ", addressIds='" + addressIds + '\'' +
|
|
|
+ ", saleMainId=" + saleMainId +
|
|
|
+ ", groupId=" + groupId +
|
|
|
+ ", goodsId=" + goodsId +
|
|
|
+ ", tradeNo='" + tradeNo + '\'' +
|
|
|
+ ", buyUserId=" + buyUserId +
|
|
|
+ ", buyUserName='" + buyUserName + '\'' +
|
|
|
+ ", buyUserType='" + buyUserType + '\'' +
|
|
|
+ ", enterpriseId=" + enterpriseId +
|
|
|
+ ", enterpriseName='" + enterpriseName + '\'' +
|
|
|
+ ", totalWeight=" + totalWeight +
|
|
|
+ ", totalPrice=" + totalPrice +
|
|
|
+ ", tradeTime=" + tradeTime +
|
|
|
+ ", tradeStatus=" + tradeStatus +
|
|
|
+ ", cancelPeople=" + cancelPeople +
|
|
|
+ ", payType=" + payType +
|
|
|
+ ", settleTime='" + settleTime + '\'' +
|
|
|
+ ", realPrice=" + realPrice +
|
|
|
+ ", shouldPrice=" + shouldPrice +
|
|
|
+ ", settleUserId=" + settleUserId +
|
|
|
+ ", recordUserId=" + recordUserId +
|
|
|
+ ", recordTime='" + recordTime + '\'' +
|
|
|
+ ", record='" + record + '\'' +
|
|
|
+ ", refundReason='" + refundReason + '\'' +
|
|
|
+ ", refundTime='" + refundTime + '\'' +
|
|
|
+ ", receiveName='" + receiveName + '\'' +
|
|
|
+ ", receivePhone='" + receivePhone + '\'' +
|
|
|
+ ", receiveAddress='" + receiveAddress + '\'' +
|
|
|
+ ", outTime='" + outTime + '\'' +
|
|
|
+ ", goodsNames='" + goodsNames + '\'' +
|
|
|
+ ", apply=" + apply +
|
|
|
+ ", applyTime=" + applyTime +
|
|
|
+ ", applyResult='" + applyResult + '\'' +
|
|
|
+ ", applyFailReason='" + applyFailReason + '\'' +
|
|
|
+ ", distribution='" + distribution + '\'' +
|
|
|
+ ", peopleConfirmStatus=" + peopleConfirmStatus +
|
|
|
+ ", peopleConfirmType=" + peopleConfirmType +
|
|
|
+ ", peopleConfirmTime=" + peopleConfirmTime +
|
|
|
+ ", applyConfirmStatus=" + applyConfirmStatus +
|
|
|
+ ", applyConfirmTime=" + applyConfirmTime +
|
|
|
+ ", enterpriseConfirm=" + enterpriseConfirm +
|
|
|
+ ", pick='" + pick + '\'' +
|
|
|
+ ", pickTime=" + pickTime +
|
|
|
+ ", shopId=" + shopId +
|
|
|
+ ", shopName='" + shopName + '\'' +
|
|
|
+ ", send=" + send +
|
|
|
+ ", sendTime='" + sendTime + '\'' +
|
|
|
+ ", collageOrdersId=" + collageOrdersId +
|
|
|
+ ", createTime=" + createTime +
|
|
|
+ ", createBy=" + createBy +
|
|
|
+ ", createName='" + createName + '\'' +
|
|
|
+ ", updateTime=" + updateTime +
|
|
|
+ ", updateBy=" + updateBy +
|
|
|
+ ", updateName='" + updateName + '\'' +
|
|
|
+ ", deleteStatus=" + deleteStatus +
|
|
|
+ ", finishStatus=" + finishStatus +
|
|
|
+ ", applyNo=" + applyNo +
|
|
|
+ ", resaleStatus=" + resaleStatus +
|
|
|
+ ", callCarStatus=" + callCarStatus +
|
|
|
+ ", goodsUnit='" + goodsUnit + '\'' +
|
|
|
+ '}';
|
|
|
+ }
|
|
|
}
|