zj
2025-06-25 7f45e436fe6d33784356f660ac328f72c00733fb
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package project.party;
 
import java.io.Serializable;
 
/**
 * 注册普通用户VO类,无推荐关系,双轨图,序列关系
 */
public class NormalReg implements Serializable {
 
    /**
     * Member Description
     */
 
    private static final long serialVersionUID = 3619328158518055604L;
 
    protected Serializable partyId;
    
    /**
     * 名称
     */
    private String name;
 
    /**
     * 权限角色
     */
    protected String rolename;
 
    /**
     * 用户名
     */
    protected String username;
 
    /**
     * 密码
     */
    protected String password;
    
    /**
     * 安全码,资金密码,username+safeword MD5编码
     */
    private String safeword;
    /**
     * 用户code
     */
    private String usercode;
    
    /**
     * 是否锁定,如果锁定可以登录、查看,但不能操作业务有关。
     */
    private boolean enabled = true;
    /**
     * 登录权限
     */
    private boolean login_authority = true;
 
    /**
     * 提现权限
     */
    private boolean withdraw_authority = true;
    
    /**
     * 充值权限
     */
    private boolean recharge_authority = true;
    
    
    /**
     * 验证码
     */
    private String identifying_code;
 
 
    public Serializable getPartyId() {
        return partyId;
    }
 
    public void setPartyId(Serializable partyId) {
        this.partyId = partyId;
    }
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public String getRolename() {
        return rolename;
    }
 
    public void setRolename(String rolename) {
        this.rolename = rolename;
    }
 
    public String getSafeword() {
        return safeword;
    }
 
    public void setSafeword(String safeword) {
        this.safeword = safeword;
    }
 
    public String getUsercode() {
        return usercode;
    }
 
    public void setUsercode(String usercode) {
        this.usercode = usercode;
    }
 
    public boolean getEnabled() {
        return enabled;
    }
 
    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }
 
    public boolean getLogin_authority() {
        return login_authority;
    }
 
    public void setLogin_authority(boolean login_authority) {
        this.login_authority = login_authority;
    }
 
    public boolean getWithdraw_authority() {
        return withdraw_authority;
    }
 
    public void setWithdraw_authority(boolean withdraw_authority) {
        this.withdraw_authority = withdraw_authority;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public boolean getRecharge_authority() {
        return recharge_authority;
    }
 
    public void setRecharge_authority(boolean recharge_authority) {
        this.recharge_authority = recharge_authority;
    }
 
    
 
    public String getIdentifying_code() {
        return identifying_code;
    }
 
    public void setIdentifying_code(String identifying_code) {
        this.identifying_code = identifying_code;
    }
 
 
}