AccidentCasesUpdateHistory.php 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "accident_cases_update_history".
  6. *
  7. * @property int $id id
  8. * @property string $origin
  9. * @property string $current
  10. * @property int $admin_log_id
  11. * @property int $uid
  12. * @property string $role_name
  13. * @property string $username
  14. * @property string $name
  15. * @property string $url
  16. * @property string $title
  17. * @property int $case_id
  18. * @property string $case_title
  19. * @property string $content
  20. * @property string $ip
  21. * @property string $useragent
  22. * @property string $create_time
  23. */
  24. class AccidentCasesUpdateHistory extends \yii\db\ActiveRecord
  25. {
  26. /**
  27. * {@inheritdoc}
  28. */
  29. public static function tableName()
  30. {
  31. return 'accident_cases_update_history';
  32. }
  33. /**
  34. * {@inheritdoc}
  35. */
  36. public function rules()
  37. {
  38. return [
  39. ];
  40. }
  41. /**
  42. * {@inheritdoc}
  43. */
  44. public function attributeLabels()
  45. {
  46. return [
  47. ];
  48. }
  49. }