puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
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
package com.sinata.common.model;
 
/**
 * 账号验证次数
 * @author goku
 * @date 2020/12/10
 */
public class AccountCheckNumVo {
 
    /**
     * 账号
     */
    private String account;
    /**
     * 验证密码次数
     */
    private Integer checkPwdNum = 0;
    /**
     * 验证密码总次数
     */
    private Integer totalPwdNum = 10;
    /**
     * 验证密码日期
     */
    private String checkPwdDate;
    /**
     * 验证码次数
     */
    private Integer checkCodeNum = 0;
    /**
     * 验证码总次数
     */
    private Integer totalCodeNum = 10;
    /**
     * 验证码日期
     */
    private String checkCodeDate;
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
 
    public Integer getCheckPwdNum() {
        return checkPwdNum;
    }
 
    public void setCheckPwdNum(Integer checkPwdNum) {
        this.checkPwdNum = checkPwdNum;
    }
 
    public Integer getTotalPwdNum() {
        return totalPwdNum;
    }
 
    public void setTotalPwdNum(Integer totalPwdNum) {
        this.totalPwdNum = totalPwdNum;
    }
 
    public String getCheckPwdDate() {
        return checkPwdDate;
    }
 
    public void setCheckPwdDate(String checkPwdDate) {
        this.checkPwdDate = checkPwdDate;
    }
 
    public Integer getCheckCodeNum() {
        return checkCodeNum;
    }
 
    public void setCheckCodeNum(Integer checkCodeNum) {
        this.checkCodeNum = checkCodeNum;
    }
 
    public Integer getTotalCodeNum() {
        return totalCodeNum;
    }
 
    public void setTotalCodeNum(Integer totalCodeNum) {
        this.totalCodeNum = totalCodeNum;
    }
 
    public String getCheckCodeDate() {
        return checkCodeDate;
    }
 
    public void setCheckCodeDate(String checkCodeDate) {
        this.checkCodeDate = checkCodeDate;
    }
}