forked from rongchao/epmet-cloud-rizhao
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.
41 lines
738 B
41 lines
738 B
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
* <p>
|
|
* https://www.renren.io
|
|
* <p>
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.epmet.constant;
|
|
|
|
/**
|
|
* 常量
|
|
*
|
|
* @author sun
|
|
* @since 1.0.0
|
|
*/
|
|
public interface UserResiRegisterConstant {
|
|
|
|
/**
|
|
* 最后一次操作行为-初始化
|
|
*/
|
|
String INITIALIZE = "initialize";
|
|
|
|
/**
|
|
* 最后一次操作行为-获取手机验证码
|
|
*/
|
|
String SMS_CODE = "sms_code";
|
|
|
|
/**
|
|
* 最后一次操作行为-提交成功
|
|
*/
|
|
String SUCCESS = "success";
|
|
|
|
/**
|
|
* 最后一次操作行为-提交失败
|
|
*/
|
|
String FAILD = "faild";
|
|
|
|
|
|
String UPDATE_EXCEPTION = "用户居民注册访问记录表数据更新失败";
|
|
}
|
|
|