<?php

namespace App\Model;

use Illuminate\Database\Eloquent\Model;

class System extends Model
{
    public  $table    = "jm_system";


    public function getStatusAttribute($status)
    {
        return 1  == $status ? '未解决' : '已解决';
    }

    public function getTypeAttribute($type)
    {
        return 1  == $type ? 'bug' : '新功能';
    }

    public function getRankAttribute($rank)
    {
        return [1 => '低' , 2 => '普通' , 3 => '高'][$rank];
    }
}