|  |  | 
 |  |  | package cc.mrbird.febs.mall.vo; | 
 |  |  |  | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import io.swagger.annotations.ApiModel; | 
 |  |  | import io.swagger.annotations.ApiModelProperty; | 
 |  |  | import lombok.Data; | 
 |  |  | 
 |  |  |     private String expressCom; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "退款时间") | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
 |  |  |     private Date refundTime; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "收货联系人") | 
 |  |  | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "收货地址") | 
 |  |  |     private String address; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "退款前状态") | 
 |  |  |     private Integer beforeStatus; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "退款金额") | 
 |  |  |     private Integer amount; | 
 |  |  | } |