id; } /** * @param mixed $id * @return DouhuomallChangeLogEntity */ public function setId($id): DouhuomallChangeLogEntity { $this->id = $id; return $this; } /** * @return mixed */ public function getSpuId() { return $this->spuId; } /** * @param mixed $spuId * @return DouhuomallChangeLogEntity */ public function setSpuId($spuId): DouhuomallChangeLogEntity { $this->spuId = $spuId; return $this; } /** * @return mixed */ public function getDataJson() { return $this->dataJson; } /** * @param mixed $dataJson * @return DouhuomallChangeLogEntity */ public function setDataJson($dataJson): DouhuomallChangeLogEntity { if (is_array($dataJson)) { $dataJson = json_encode($dataJson, JSON_UNESCAPED_UNICODE); } $this->dataJson = $dataJson; return $this; } /** * @return mixed */ public function getEffectProductJson() { return $this->effectProductJson; } /** * @param mixed $effectProductJson * @return DouhuomallChangeLogEntity */ public function setEffectProductJson($effectProductJson): DouhuomallChangeLogEntity { if (is_array($effectProductJson)) { $effectProductJson = json_encode($effectProductJson, JSON_UNESCAPED_UNICODE); } $this->effectProductJson = $effectProductJson; return $this; } /** * @return mixed */ public function getCreateTime() { return $this->createTime; } /** * @param mixed $createTime * @return DouhuomallChangeLogEntity */ public function setCreateTime($createTime): DouhuomallChangeLogEntity { $this->createTime = $createTime; return $this; } }