|  |  |  | 
|---|
|  |  |  | package cc.mrbird.febs.mall.vo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long memberId; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|---|
|  |  |  | private Date orderTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|---|
|  |  |  | private Date payTime; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private BigDecimal amount; | 
|---|
|  |  |  | 
|---|
|  |  |  | private String payMethod; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String payOrderNo; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String payImage; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String payResult; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String memberPhone; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String memberBindPhone; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String memberEmail; | 
|---|
|  |  |  | } | 
|---|