|
@@ -45,11 +45,16 @@ public class OrderPageVO<T> implements IAfterSaleDisplay, IGeoRiskInfo {
|
|
|
private BigDecimal finalAmount;
|
|
private BigDecimal finalAmount;
|
|
|
|
|
|
|
|
@ApiModelProperty("预约开始时间")
|
|
@ApiModelProperty("预约开始时间")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private LocalDateTime appointmentStartTime;
|
|
private LocalDateTime appointmentStartTime;
|
|
|
|
|
|
|
|
@ApiModelProperty("预约结束时间")
|
|
@ApiModelProperty("预约结束时间")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private LocalDateTime appointmentEndTime;
|
|
private LocalDateTime appointmentEndTime;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty("预约时间范围(格式化,示例:5月12日 16:00-18:00)")
|
|
|
|
|
+ private String appointmentTimeRange;
|
|
|
|
|
+
|
|
|
@ApiModelProperty("联系人姓名")
|
|
@ApiModelProperty("联系人姓名")
|
|
|
private String contactPersonName;
|
|
private String contactPersonName;
|
|
|
|
|
|
|
@@ -87,6 +92,6 @@ public class OrderPageVO<T> implements IAfterSaleDisplay, IGeoRiskInfo {
|
|
|
private Long categoryId;
|
|
private Long categoryId;
|
|
|
|
|
|
|
|
@ApiModelProperty("下单时间")
|
|
@ApiModelProperty("下单时间")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
private LocalDateTime createTime;
|
|
private LocalDateTime createTime;
|
|
|
}
|
|
}
|