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;
|
}
|
}
|