SettingModel.class.php 490 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: liyifei2012it
 * Date: 16/9/18
 * Time: 14:45
 */

namespace Common\Model;

use Com\AbstractSettingModel;

class SettingModel extends AbstractSettingModel
{
    // 排名筛选条件:角色
    const FILTER_ROLE = 1;
    // 排名筛选条件:岗位
    const FILTER_JOB = 2;
    // 表 key
    const SETTING_KEY_RANK_FILTER = 'rank_filter';

    // 构造方法
    public function __construct()
    {

        parent::__construct();
    }
}