EmergencyResponseDimensionObj.php 697 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace common\util;
  3. class EmergencyResponseDimensionObj
  4. {
  5. // public int $accident_id;
  6. // public int $emergency_response_id;
  7. public ?string $content;
  8. public int $type;
  9. public int $status;
  10. /**
  11. * @param $EmergencyResponseDimension
  12. */
  13. public function __construct($EmergencyResponseDimension)
  14. {
  15. // $this->accident_id = $EmergencyResponseDimension->accident_id;
  16. // $this->emergency_response_id = $EmergencyResponseDimension->emergency_response_id;
  17. $this->content = $EmergencyResponseDimension->content;
  18. $this->type = $EmergencyResponseDimension->type;
  19. $this->status = $EmergencyResponseDimension->status;
  20. }
  21. }