You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
514 B

package com.community.pocket.entity.po;
/**
* 邮箱验证码
*/
public class EmailCode {
//发送邮箱
private String emailAddress;
//验证码
private String code;
//发送时间
private Long sendTime=System.currentTimeMillis();
//有效时间
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public void setEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
}
}