CodeInfo.java
943 字节
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
package com.sinocontact.app.entity;
/**
* 验证码信息
* @author todd
* @since 2019/1/30
*/
public class CodeInfo {
private String phone; //发送验证码的手机号
private String code; //验证码
private String sendTime; //发送验证码的时间
public CodeInfo(){
}
public CodeInfo(String phone, String code, String sendTime) {
this.phone = phone;
this.code = code;
this.sendTime = sendTime;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getSendTime() {
return sendTime;
}
public void setSendTime(String sendTime) {
this.sendTime = sendTime;
}
}