| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- /**
- * Class AuthRole
- * @package app\modules\common\models
- * @property integer $admin_id
- * @property string $role_id
- */
- class AdminRole extends ActiveRecord
- {
- public static function tableName()
- {
- return '{{%admin_role}}';
- }
- public function rules()
- {
- return [
- [['admin_id'], 'integer'],
- [['role_id'], 'integer'],
- ];
- }
- public function attributeLabels()
- {
- return [
- 'admin_id' => '账号ID',
- 'role_key' => '角色ID',
- ];
- }
- }
|