xiaoyong931011
2023-04-17 848a1f9caf6f7e7efe7c65b770cea3ad52512496
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
40
41
42
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 = "AdminMoneyChargeListVo", description = "信息返回类")
public class AdminMoneyChargeListVo {
 
    private Long id;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createdTime;
 
    private BigDecimal amount;
 
    private BigDecimal amountFee;
 
    private BigDecimal amountReal;
 
    private String withdrawNo;
 
    private Integer status;
 
    private String name;
 
    private String phone;
 
    private String bindPhone;
 
    private String remark;
 
    private Integer type;
 
    private BigDecimal scoreCnt;
 
    private BigDecimal scorePrice;
}