AccidentCasesScoreComment.php 705 B

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