xiaoyong931011
2023-10-30 4b42548bdeee0035497839403941d32fe13210c0
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 lombok.Data;
import java.math.BigDecimal;
 
@Data
public class AdminChatWithDrawVo {
 
    private String createdTime;
    /**
     * 主键
     */
    private String id;
 
    /**
     * 昵称
     */
    private String nickName;
    private String phone;
    /**
     * 提现金额
     */
    private BigDecimal amount;
    private BigDecimal fee;
    /**
     * 1:内转 2:外转提现
     */
    private Integer type;
    /**
     * 提现地址
     */
    private String address;
    /**
     * 1:成功 2:失败 3:进行中
     */
    private Integer state;
 
    private String addressType;
}