shippingTemplateId; } /** * @param int $shippingTemplateId * @return ShippingTemplateEntity */ public function setShippingTemplateId(int $shippingTemplateId): ShippingTemplateEntity { $this->shippingTemplateId = $shippingTemplateId; return $this; } /** * @return string */ public function getName(): string { return $this->name; } /** * @param string $name * @return ShippingTemplateEntity */ public function setName(string $name): ShippingTemplateEntity { $this->name = $name; return $this; } /** * @return int */ public function getType(): int { return $this->type; } /** * @param int $type * @return ShippingTemplateEntity */ public function setType(int $type): ShippingTemplateEntity { $this->type = $type; return $this; } /** * @return int */ public function getAppoint(): int { return $this->appoint; } /** * @param int $appoint * @return ShippingTemplateEntity */ public function setAppoint(int $appoint): ShippingTemplateEntity { $this->appoint = $appoint; return $this; } /** * @return int */ public function getUndelivery(): int { return $this->undelivery; } /** * @param int $undelivery * @return ShippingTemplateEntity */ public function setUndelivery(int $undelivery): ShippingTemplateEntity { $this->undelivery = $undelivery; return $this; } /** * @return int */ public function getMerId(): int { return $this->merId; } /** * @param int $merId * @return ShippingTemplateEntity */ public function setMerId(int $merId): ShippingTemplateEntity { $this->merId = $merId; return $this; } /** * @return int */ public function getIsDefault(): int { return $this->isDefault; } /** * @param int $isDefault * @return ShippingTemplateEntity */ public function setIsDefault(int $isDefault): ShippingTemplateEntity { $this->isDefault = $isDefault; return $this; } /** * @return int */ public function getSort(): int { return $this->sort; } /** * @param int $sort * @return ShippingTemplateEntity */ public function setSort(int $sort): ShippingTemplateEntity { $this->sort = $sort; return $this; } /** * @return null */ public function getCreateTime() { return $this->createTime; } /** * @param null $createTime * @return ShippingTemplateEntity */ public function setCreateTime($createTime) { $this->createTime = $createTime; return $this; } }