company_module_id = $company_module_id; $this->reference = $reference; $this->reference_contract = $reference_contract; $this->type = $type; $this->status = $status; $this->current_step = $current_step; $this->id = $id; $this->address_id = $address_id; $this->warehouse_id = $warehouse_id; } public function getId(): int { return $this->id; } public function getCompanyModuleId(): int { return $this->company_module_id; } public function getReference(): string { return $this->reference; } public function getReferenceContract(): string { return $this->reference_contract; } public function getType(): int { return $this->type; } public function getStatus(): int { return $this->status; } public function getCurrentStep(): string { return $this->current_step; } public function getWarehouseId(): int { return $this->warehouse_id; } public function getAddressId(): int { return $this->address_id; } public function setCurrentStep(string $step) { $this->current_step = $step; } }