From 069fb90ce8ce17495ee41dbeb0c88fd7a38e1992 Mon Sep 17 00:00:00 2001 From: dzl <863620989@qq.com> Date: Wed, 21 May 2025 10:17:25 +0800 Subject: [PATCH] =?UTF-8?q?dto=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/cdzy/payment/model/dto/OrderInfo.java | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/ebike-payment/src/main/java/com/cdzy/payment/model/dto/OrderInfo.java b/ebike-payment/src/main/java/com/cdzy/payment/model/dto/OrderInfo.java index f93fc567..3ed5d422 100644 --- a/ebike-payment/src/main/java/com/cdzy/payment/model/dto/OrderInfo.java +++ b/ebike-payment/src/main/java/com/cdzy/payment/model/dto/OrderInfo.java @@ -15,37 +15,88 @@ import java.time.LocalDateTime; @Data public class OrderInfo { + /** + * 订单编号 + */ private String orderId; + /** + * 车辆编号 + */ private String bikeCode; + /** + * 运营区域 + */ private String operate; + /** + * 订单来源 + */ private String orderSource; + /** + * 租借方式 + */ private String rentMethod; + /** + * 骑行状态 + */ private String cyclingState; + /** + * 还车类型 + */ private String returnCarType; + /** + * 开锁时间 + */ private LocalDateTime unLockTime; + /** + * 锁车时间 + */ private LocalDateTime lockTime; + /** + * 骑行时长 + */ private String cyclingDuration; + /** + * 轨迹里程 + */ private String trajectoryMileage; + /** + * 中控里程 + */ private String ecuMileage; + /** + * 创建时间 + */ private LocalDateTime createTime; + /** + * 结束时间 + */ private LocalDateTime endTime; + /** + * 订单备注 + */ private String orderRemark; + /** + * 起始行政区域 + */ private String startRegion; + /** + * 结束行政区域 + */ private String endRegion; }