AccidentCasesScore.php 838 B

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