GITLAB

OTHER_COMPANY_PROJECTS / ota

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • ota
  • domain
  • system
  • models
  • AuthPermsRoutes.php
  • b60f5eda   1. 删除部分冗余代码 ... Browse Code »
    2. 厂商账号登录可以进入操作, 部分权限文件误删除了
    xu
    2019-11-06 20:18:04 +0800  
AuthPermsRoutes.php 328 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php

namespace domain\system\models;

use yii\db\ActiveRecord;

/**
 * 路由权限
 * This is the model class for table "{{%auth_perms_routes.}}".
 */
class AuthPermsRoutes extends ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return '{{%auth_perms_routes}}';
    }

}