id; } /** * @param int $id * @return MerchantContributionEntity */ public function setId(int $id): MerchantContributionEntity { $this->id = $id; return $this; } /** * @return string */ public function getTitle(): string { return $this->title; } /** * @param string $title * @return MerchantContributionEntity */ public function setTitle(string $title): MerchantContributionEntity { $this->title = $title; return $this; } /** * @return int */ public function getStart(): int { return $this->start; } /** * @param int $start * @return MerchantContributionEntity */ public function setStart(int $start): MerchantContributionEntity { $this->start = $start; return $this; } /** * @return int */ public function getEnd(): int { return $this->end; } /** * @param int $end * @return MerchantContributionEntity */ public function setEnd(int $end): MerchantContributionEntity { $this->end = $end; return $this; } /** * @return string */ public function getType(): string { return $this->type; } /** * @param string $type * @return MerchantContributionEntity */ public function setType(string $type): MerchantContributionEntity { $this->type = $type; return $this; } /** * @return float */ public function getJd(): float { return $this->jd; } /** * @param float $jd * @return MerchantContributionEntity */ public function setJd(float $jd): MerchantContributionEntity { $this->jd = $jd; return $this; } /** * @return float */ public function getValue(): float { return $this->value; } /** * @param float $value * @return MerchantContributionEntity */ public function setValue(float $value): MerchantContributionEntity { $this->value = $value; return $this; } /** * @return int */ public function getCreateTime(): int { return $this->createTime; } /** * @param int $createTime * @return MerchantContributionEntity */ public function setCreateTime(int $createTime): MerchantContributionEntity { $this->createTime = $createTime; return $this; } }