| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace frontend\models;
- use Yii;
- /**
- * This is the model class for table "bit_admin_role".
- *
- * @property integer $admin_set_id
- * @property integer $role_set_id
- */
- class AdminRole extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'bit_admin_role';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['admin_set_id', 'role_set_id'], 'number'],
- ];
- }
- }
|