截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OrderGoods.php 861B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace app\common\model\order;
  3. use app\common\basics\Models;
  4. use app\common\model\goods\GoodsItem;
  5. use app\common\model\goods\Goods;
  6. use app\common\model\shop\Shop;
  7. /**
  8. * Class OrderGoods
  9. * @package app\common\model\order
  10. */
  11. class OrderGoods extends Models
  12. {
  13. /**
  14. * @notes 关联GoodsItem模型
  15. * @return \think\model\relation\HasOne
  16. * @author suny
  17. * @date 2021/7/13 6:46 下午
  18. */
  19. public function goodsItem()
  20. {
  21. return $this->hasOne(GoodsItem::class, 'id', 'item_id')
  22. ->field('id,image,spec_value_str');
  23. }
  24. /**
  25. * @notes 关联Shop模型
  26. * @return \think\model\relation\HasOne
  27. * @author suny
  28. * @date 2021/7/13 6:46 下午
  29. */
  30. public function shop()
  31. {
  32. return $this->hasOne(Shop::class, 'id', 'shop_id')
  33. ->field('id,name');
  34. }
  35. }