class VApplication

Public Instance Methods

status_disp() click to toggle source
# File lib/ting_model/v_application.rb, line 23
def status_disp
  case self.status
    when 0
      "待提交"
    when 1
      "待审核"
    when 2
      "审核通过"
    when 3
      "审核不通过"
  end
end