截流自动化的商城平台
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.

TeamActivity.php 828B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\common\model\team;
  3. use app\common\basics\Models;
  4. /**
  5. * 拼团活动模型
  6. * Class TeamActivity
  7. * @package app\common\model\team
  8. */
  9. class TeamActivity extends Models
  10. {
  11. /**
  12. * @Notes: 关联商品模型
  13. * @Author: 张无忌
  14. */
  15. public function goods()
  16. {
  17. return $this->hasOne('app\common\model\goods\Goods', 'id', 'goods_id')
  18. ->field(['id,name,image,max_price,min_price,market_price,stock']);
  19. }
  20. /**
  21. * @Notes: 关联拼团商品模型
  22. * @Author: 张无忌
  23. */
  24. public function teamGoods()
  25. {
  26. return $this->hasMany('TeamGoods', 'team_id', 'id')
  27. ->alias('TG')
  28. ->field(['TG.*', 'GI.spec_value_str,GI.price,GI.market_price,GI.stock'])
  29. ->join('goods_item GI', 'TG.item_id = GI.id');
  30. }
  31. }