| 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; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2021-09-23 | 
|  **/ | 
| @Data | 
| @ApiModel(value = "OrderRefundVo", description = "订单退款详情返回参数类") | 
| public class OrderRefundVo { | 
|   | 
|     @ApiModelProperty(value = "退款ID") | 
|     private Long id; | 
|   | 
|     @ApiModelProperty(value = "退款理由") | 
|     private String reason; | 
|   | 
|     @ApiModelProperty(value = "描述") | 
|     private String desp; | 
|   | 
|     @ApiModelProperty(value = "退款状态 1-已申请 2-同意退款 3-驳回退款 4-已提交物流信息 5-已退款 6-已取消") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "1-仅退款 2-退款退货") | 
|     private Integer type; | 
|   | 
|     @ApiModelProperty(value = "物流单号") | 
|     private String expressNo; | 
|   | 
|     @ApiModelProperty(value = "物流公司") | 
|     private String expressCom; | 
|   | 
|     @ApiModelProperty(value = "退款时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|     private Date refundTime; | 
|   | 
|     @ApiModelProperty(value = "收货联系人") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "收货联系电话") | 
|     private String phone; | 
|   | 
|     @ApiModelProperty(value = "收货地址") | 
|     private String address; | 
|   | 
|     @ApiModelProperty(value = "退款前状态") | 
|     private Integer beforeStatus; | 
|   | 
|     @ApiModelProperty(value = "退款金额") | 
|     private Integer amount; | 
| } |