BaseRoleClientRules.php 632 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace common\models;
  3. use yii\db\ActiveRecord;
  4. /**
  5. * This is the model class for table "base_role_client_rules".
  6. *
  7. * @property int $id
  8. * @property int $role_id
  9. * @property string $rules
  10. */
  11. class BaseRoleClientRules extends ActiveRecord
  12. {
  13. /**
  14. * {@inheritdoc}
  15. */
  16. public static function tableName(): string
  17. {
  18. return 'base_role_client_rules';
  19. }
  20. /**
  21. * {@inheritdoc}
  22. */
  23. public function rules(): array
  24. {
  25. return [
  26. ];
  27. }
  28. /**
  29. * {@inheritdoc}
  30. */
  31. public function attributeLabels(): array
  32. {
  33. return [
  34. ];
  35. }
  36. }