class ReportInformation

Constants

TYPE

content_type设置

Public Instance Methods

is_processed_disp() click to toggle source
# File lib/ting_model/report_information.rb, line 18
def is_processed_disp
  case self.is_processed
    when true
      "已处理"
    when false
      "未处理"
    else
      ""
  end
end