| 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.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| @Data | 
| @ApiModel(value = "MoneyFlowVo", description = "资金列表返回参数类") | 
| public class MoneyFlowVo { | 
|   | 
|     @ApiModelProperty(value = "金额,有正负") | 
|     private BigDecimal amount; | 
|   | 
|     @ApiModelProperty(value = "类型") | 
|     private Integer type; | 
|   | 
|     @ApiModelProperty(value = "状态 1-进行中 2-成功 0-失败") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|     private Date createdTime; | 
|   | 
|     @ApiModelProperty(value = "描述") | 
|     private String description; | 
|   | 
| } |