productId; } /** * @param mixed $productId * @return ThirdPartyGoodCacheEntity */ public function setProductId($productId): ThirdPartyGoodCacheEntity { $this->productId = $productId; return $this; } /** * @return mixed */ public function getPlatform() { return $this->platform; } /** * @param mixed $platform * @return ThirdPartyGoodCacheEntity */ public function setPlatform($platform): ThirdPartyGoodCacheEntity { $this->platform = $platform; return $this; } /** * @return mixed */ public function getExtraContent() { return $this->extraContent; } /** * @param mixed $extraContent * @return ThirdPartyGoodCacheEntity */ public function setExtraContent($extraContent): ThirdPartyGoodCacheEntity { if (is_array($extraContent)) { $extraContent = json_encode($extraContent, JSON_UNESCAPED_UNICODE); } $this->extraContent = $extraContent; return $this; } /** * @return mixed */ public function getCreateTime() { return $this->createTime; } /** * @param mixed $createTime * @return ThirdPartyGoodCacheEntity */ public function setCreateTime($createTime): ThirdPartyGoodCacheEntity { $this->createTime = $createTime; return $this; } /** * @return mixed */ public function getUpdateTime() { return $this->updateTime; } /** * @param mixed $updateTime * @return ThirdPartyGoodCacheEntity */ public function setUpdateTime($updateTime): ThirdPartyGoodCacheEntity { $this->updateTime = $updateTime; return $this; } }