1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace app\modules\admin\models;
- use Yii;
- /**
- * This is the model class for table "{{%role_resource}}".
- *
- * @property int $role_resource_id ID
- * @property int $role_id 角色ID
- * @property string $hash 资源ID
- */
- class RoleResource extends \app\common\models\EActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%role_resource}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['role_id', 'hash'], 'required'],
- [['role_id'], 'integer'],
- [['hash'], 'string', 'max' => 50],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'role_resource_id' => 'Role Resource ID',
- 'role_id' => 'Role ID',
- 'hash' => 'Hash',
- ];
- }
- }
|