orderGoods = $orderGoods; $this->goodsDeduction = $goodsDeduction; } /** * @return GoodsDeduction */ protected function getGoodsDeduction() { return $this->goodsDeduction; } /** * @return PreOrderGoods */ protected function getOrderGoods() { return $this->orderGoods; } /** * 最大抵扣金额 * @return float */ abstract public function getMaxAmount(); /** * 最少抵扣金额 * @return mixed */ abstract public function getMinAmount(); abstract function hasMinAmount(); }