123456789101112131415161718192021222324 |
- <?php
- namespace common\util;
- class EmergencyResponseDimensionObj
- {
- // public int $accident_id;
- // public int $emergency_response_id;
- public ?string $content;
- public int $type;
- public int $status;
- /**
- * @param $EmergencyResponseDimension
- */
- public function __construct($EmergencyResponseDimension)
- {
- // $this->accident_id = $EmergencyResponseDimension->accident_id;
- // $this->emergency_response_id = $EmergencyResponseDimension->emergency_response_id;
- $this->content = $EmergencyResponseDimension->content;
- $this->type = $EmergencyResponseDimension->type;
- $this->status = $EmergencyResponseDimension->status;
- }
- }
|