AccidentCasesStudy.php 794 B

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