Commit 1135a081 by xieshixiang

返回结果类封装

parent f1aace6b
package com.hikcreate.edl.pub.web.mobile.infra.model;
import cn.hutool.core.date.DateTime;
import lombok.Data;
/**
* 短信验证通过记录
*
* @author: xsx
* @date: 2020/6/19 18:33
*/
@Data
public class VerifyInfo {
/**
* 记录唯一id
*/
private int id;
/**
* 用户id
*/
private String userId;
/**
* 验证码
*/
private String verifyCode;
/**
* 电话号码
*/
private String phone;
/**
* 上次通过验证的时间
*/
private DateTime passTime;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment