-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathVerify.java
More file actions
110 lines (94 loc) · 2.68 KB
/
Verify.java
File metadata and controls
110 lines (94 loc) · 2.68 KB
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
/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.*/
package apijson.demo.model;
import static apijson.orm.AbstractVerifier.ADMIN;
import static apijson.orm.AbstractVerifier.CIRCLE;
import static apijson.orm.AbstractVerifier.CONTACT;
import static apijson.orm.AbstractVerifier.LOGIN;
import static apijson.orm.AbstractVerifier.OWNER;
import static apijson.orm.AbstractVerifier.UNKNOWN;
import apijson.MethodAccess;
import apijson.framework.BaseModel;
/**验证码
* @author Lemon
*/
@MethodAccess(
GET = {},
HEAD = {},
GETS = {UNKNOWN, LOGIN, CONTACT, CIRCLE, OWNER, ADMIN},
HEADS = {UNKNOWN, LOGIN, CONTACT, CIRCLE, OWNER, ADMIN},
POST = {UNKNOWN, LOGIN, CONTACT, CIRCLE, OWNER, ADMIN},
PUT = {ADMIN},
DELETE = {ADMIN}
)
public class Verify extends BaseModel {
private static final long serialVersionUID = 1L;
public static final int TYPE_LOGIN = 0; //登录
public static final int TYPE_REGISTER = 1; //注册
public static final int TYPE_PASSWORD = 2; //登录密码
public static final int TYPE_PAY_PASSWORD = 3; //支付密码
public static final int TYPE_RELOAD = 4; //重载配置
private String phone; //手机
private String email; //邮箱
private String verify; //验证码
private Integer type; //验证类型
public Verify() {
super();
}
/**type和phone为联合主键,必传
* @param type
* @param phone
*/
public Verify(int type, String phone) {
this();
setType(type);
setPhone(phone);
}
/**type和phone为联合主键,必传
* @param type
* @param phone
* @param email
*/
public Verify(int type, String phone, String email) {
this();
setType(type);
setPhone(phone);
setEmail(email);
}
public String getVerify() {
return verify;
}
public Verify setVerify(String verify) {
this.verify = verify;
return this;
}
public String getPhone() {
return phone;
}
public Verify setPhone(String phone) {
this.phone = phone;
return this;
}
public String getEmail() {
return email;
}
public Verify setEmail(String email) {
this.email = email;
return this;
}
public Integer getType() {
return type;
}
public Verify setType(Integer type) {
this.type = type;
return this;
}
}