cartId; } public function setCartId(int $cartId): CartEntity { $this->cartId = $cartId; return $this; } public function getUid(): int { return $this->uid; } public function setUid(int $uid): CartEntity { $this->uid = $uid; return $this; } public function getMerId(): int { return $this->merId; } public function setMerId(int $merId): CartEntity { $this->merId = $merId; return $this; } public function getProductType(): int { return $this->productType; } public function setProductType(int $productType): CartEntity { $this->productType = $productType; return $this; } public function getProductId(): int { return $this->productId; } public function setProductId(int $productId): CartEntity { $this->productId = $productId; return $this; } public function getProductAttrUnique(): string { return $this->productAttrUnique; } public function setProductAttrUnique(string $productAttrUnique): CartEntity { $this->productAttrUnique = $productAttrUnique; return $this; } public function getCartNum(): int { return $this->cartNum; } public function setCartNum(int $cartNum): CartEntity { $this->cartNum = $cartNum; return $this; } /** * @return null */ public function getCreateTime() { return $this->createTime; } /** * @param null $createTime * @return CartEntity */ public function setCreateTime($createTime) { $this->createTime = $createTime; return $this; } public function getSource(): int { return $this->source; } public function setSource(int $source): CartEntity { $this->source = $source; return $this; } public function getSourceId(): int { return $this->sourceId; } public function setSourceId(int $sourceId): CartEntity { $this->sourceId = $sourceId; return $this; } public function getIsPay(): int { return $this->isPay; } public function setIsPay(int $isPay): CartEntity { $this->isPay = $isPay; return $this; } public function getIsDel(): int { return $this->isDel; } public function setIsDel(int $isDel): CartEntity { $this->isDel = $isDel; return $this; } public function getIsNew(): int { return $this->isNew; } public function setIsNew(int $isNew): CartEntity { $this->isNew = $isNew; return $this; } public function getIsFail(): int { return $this->isFail; } public function setIsFail(int $isFail): CartEntity { $this->isFail = $isFail; return $this; } }