zj
2024-06-03 81a29edf665881828e4ca1f0e444bfcbc6ab6f24
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
43
44
45
46
47
48
49
50
51
52
 
package com.nq.vo.agent;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class AgentUserListVO {
    private Integer id;
    private Integer agentId;
    private String agentName;
    private String phone;
 
    private String realName;
 
    private String idCard;
 
    private Integer accountType;
 
    private Integer isLock;
 
    private Integer isLogin;
 
    private String regAddress;
 
    private Integer isActive;
 
    private String bankName;
 
    private String bankNo;
 
    private String bankAddress;
 
    private BigDecimal userAmt;
    private BigDecimal enableAmt;
    private BigDecimal forceLine;
    private BigDecimal allProfitAndLose;
    private BigDecimal allFreezAmt;
    private BigDecimal userIndexAmt;
    private BigDecimal enableIndexAmt;
    private BigDecimal indexForceLine;
    private BigDecimal allIndexFreezAmt;
    private BigDecimal allIndexProfitAndLose;
    private BigDecimal userFuturesAmt;
    private BigDecimal enableFuturesAmt;
    private BigDecimal futuresForceLine;
    private BigDecimal allFuturesFreezAmt;
    private BigDecimal allFuturesProfitAndLose;
    private String mailbox;
 
}