| | |
| | | package cc.mrbird.febs.mall.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @ApiModel(value = "AdminMallOrderRefundVo", description = "信息返回类") |
| | |
| | | private String buyName; |
| | | |
| | | private String buyPhone; |
| | | |
| | | private String buyBindPhone; |
| | | |
| | | private String addressDetail; |
| | | |
| | |
| | | private Integer type; |
| | | |
| | | private String expressCom; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createdTime; |
| | | |
| | | private BigDecimal amount; |
| | | |
| | | private Integer beforeStatus; |
| | | } |