xiaoyong931011
2021-09-28 2eff39a10917e141d2a61ff9f0763c10858cd0b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 = "AdminMoneyFlowListVo", description = "信息返回类")
public class AdminMoneyFlowListVo {
 
    private Long id;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime;
 
    private BigDecimal amount;
 
    private Integer type;
 
    private String orderNo;
 
    private String description;
 
    private String remark;
 
    private String name;
 
    private String phone;
 
    private Integer status;
 
    private String payMethod;
 
    private String bindPhone;
 
}