mall_id = $mall_id; } /** * 设置不允许申请售后 * * @param string $message * * @return void */ public function setNoAllow(string $message) { $this->isAllow = 0; $this->message = $message; } /** * @return int */ public function getIsAllow(): int { return $this->isAllow; } /** * @return string */ public function getMessage(): string { return $this->message; } }