EmergencyResponseRelateToRulesPoints.php 678 B

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