id; } public function setId(int $id): SeckillEntity { $this->id = $id; return $this; } public function getProductId(): int { return $this->productId; } public function setProductId(int $productId): SeckillEntity { $this->productId = $productId; return $this; } /** * @return null */ public function getSeckillDate() { return $this->seckillDate; } /** * @param null $seckillDate * @return SeckillEntity */ public function setSeckillDate($seckillDate) { $this->seckillDate = $seckillDate; return $this; } public function getStatus(): int { return $this->status; } public function setStatus(int $status): SeckillEntity { $this->status = $status; return $this; } /** * @return null */ public function getCtime() { return $this->ctime; } /** * @param null $ctime * @return SeckillEntity */ public function setCtime($ctime) { $this->ctime = $ctime; return $this; } public function getMerId(): int { return $this->merId; } public function setMerId(int $merId): SeckillEntity { $this->merId = $merId; return $this; } }