dto优化
This commit is contained in:
parent
de701c4726
commit
069fb90ce8
@ -15,37 +15,88 @@ import java.time.LocalDateTime;
|
|||||||
@Data
|
@Data
|
||||||
public class OrderInfo {
|
public class OrderInfo {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单编号
|
||||||
|
*/
|
||||||
private String orderId;
|
private String orderId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 车辆编号
|
||||||
|
*/
|
||||||
private String bikeCode;
|
private String bikeCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 运营区域
|
||||||
|
*/
|
||||||
private String operate;
|
private String operate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单来源
|
||||||
|
*/
|
||||||
private String orderSource;
|
private String orderSource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租借方式
|
||||||
|
*/
|
||||||
private String rentMethod;
|
private String rentMethod;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 骑行状态
|
||||||
|
*/
|
||||||
private String cyclingState;
|
private String cyclingState;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 还车类型
|
||||||
|
*/
|
||||||
private String returnCarType;
|
private String returnCarType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 开锁时间
|
||||||
|
*/
|
||||||
private LocalDateTime unLockTime;
|
private LocalDateTime unLockTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 锁车时间
|
||||||
|
*/
|
||||||
private LocalDateTime lockTime;
|
private LocalDateTime lockTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 骑行时长
|
||||||
|
*/
|
||||||
private String cyclingDuration;
|
private String cyclingDuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 轨迹里程
|
||||||
|
*/
|
||||||
private String trajectoryMileage;
|
private String trajectoryMileage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 中控里程
|
||||||
|
*/
|
||||||
private String ecuMileage;
|
private String ecuMileage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
private LocalDateTime createTime;
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 结束时间
|
||||||
|
*/
|
||||||
private LocalDateTime endTime;
|
private LocalDateTime endTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 订单备注
|
||||||
|
*/
|
||||||
private String orderRemark;
|
private String orderRemark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 起始行政区域
|
||||||
|
*/
|
||||||
private String startRegion;
|
private String startRegion;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 结束行政区域
|
||||||
|
*/
|
||||||
private String endRegion;
|
private String endRegion;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user