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.
|
|
|
|
class VerificationCode < ActiveRecord::Base
|
|
|
|
|
#status:发送状态
|
|
|
|
|
#code_type:发送类型:type 1:注册手机验证码 2:找回密码手机验证码 3:找回密码邮箱验证码 4:绑定手机 5:绑定邮箱 6:手机验证码登录 7:邮箱验证码登录 8:邮箱注册验证码
|
|
|
|
|
attr_accessible :code, :code_type, :email, :phone, :status
|
|
|
|
|
end
|