trustieplus/app/models/apply_user_authentication.rb

7 lines
256 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class ApplyUserAuthentication < ActiveRecord::Base
belongs_to :user
# status0 审核中 1 同意 2 拒绝 3 撤销
# auth_type1 实名认证, 2 职业认证
attr_accessible :auth_type, :dealer, :deal_time, :remarks, :status, :user_id
end