| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2020/9/3
- * Time: 15:27
- */
- namespace app\frontend\modules\orderGoods\price\adapter;
- abstract class BaseGoodsPriceAdapter
- {
- protected $goods;
- protected $dealPrice;
- protected $appoint_price;
- public function __construct($goods)
- {
- $this->goods = $goods;
- }
- final public function setAppointPrice($price)
- {
- $this->appoint_price = $price;
- }
- //成交价
- public function getDealPrice()
- {
- //指定成交价格
- if (isset($this->appoint_price)) {
- return $this->appoint_price;
- }
- $this->dealPrice = $this->_getDealPrice();
- if (is_null($this->dealPrice)) {
- $this->dealPrice = $this->getDefaultDealPrice();
- }
- return $this->dealPrice;
- }
- abstract protected function getDefaultDealPrice();
- abstract protected function _getDealPrice();
- //商品成本价
- abstract function getCostPrice();
- //商品现价
- abstract function getPrice();
- //商品原价/市场价
- abstract function getMarketPrice();
- abstract protected function goods();
- }
|