GoodsDealPrice.php 349 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\modules\goods\dealPrice;
  3. class GoodsDealPrice extends BaseDealPrice
  4. {
  5. public function getDealPrice()
  6. {
  7. return $this->goods->price;
  8. }
  9. /**
  10. * @return bool
  11. */
  12. public function enable()
  13. {
  14. return true;
  15. }
  16. public function getWeight()
  17. {
  18. return 1000;
  19. }
  20. }