logisticsOrderCode = $logisticsOrderCode; $this->executeTime = $executeTime; $this->timeZone = $timeZone; $this->status = $status; $this->packageInfo = $packageInfo; $this->clientId = $clientId; $this->type = $type; $this->timestamp = $timestamp; $this->sign = $sign; $this->orderCode = $orderCode; $this->bizAction = $bizAction; $this->bizActionDesc = $bizActionDesc; $this->segmentCode = $segmentCode; $this->isSplitOut = $isSplitOut; $this->packageInfos = $packageInfos; } /** * @return string */ public function getLogisticsOrderCode(): string { return $this->logisticsOrderCode; } /** * @return string */ public function getExecuteTime(): string { return $this->executeTime; } /** * @return string */ public function getTimeZone(): string { return $this->timeZone; } /** * @return string */ public function getStatus(): string { return $this->status; } /** * @return array */ public function getPackageInfo(): array { return $this->packageInfo; } /** * @return string */ public function getClientId(): string { return $this->clientId; } /** * @return string */ public function getType(): string { return $this->type; } /** * @return int */ public function getTimestamp(): int { return $this->timestamp; } /** * @return string */ public function getSign(): string { return $this->sign; } /** * @return string */ public function getOrderCode(): string { return $this->orderCode; } /** * @return string */ public function getBizAction(): string { return $this->bizAction; } /** * @return string */ public function getBizActionDesc(): string { return $this->bizActionDesc; } /** * @return string */ public function getSegmentCode(): string { return $this->segmentCode; } /** * @return string */ public function getIsSplitOut(): string { return $this->isSplitOut; } /** * @return string */ public function getPackageInfos(): string { return json_encode($this->packageInfos); } }