EmergencyResponseDimension.php 746 B

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