|  |  | 
 |  |  | package com.mzl.flower.dto.response.payment; | 
 |  |  |  | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import com.mzl.flower.base.AbstractTransDTO; | 
 |  |  | import com.mzl.flower.base.annotation.DictTrans; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | import lombok.Data; | 
 |  |  | import org.springframework.format.annotation.DateTimeFormat; | 
 |  |  |  | 
 |  |  | import java.math.BigDecimal; | 
 |  |  | import java.time.LocalDateTime; | 
 |  |  | 
 |  |  |     @ApiModelProperty(value = "下单时间") | 
 |  |  |     private LocalDateTime orderTime; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "收货时间") | 
 |  |  |     @ApiModelProperty(value = "收货日期") | 
 |  |  |     @JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8") | 
 |  |  |     @DateTimeFormat | 
 |  |  |     private LocalDateTime receiveTime; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "订单号") | 
 |  |  |     private String orderNo; | 
 |  |  | } |