GoodsCart.php 280 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 邮箱验证码
  6. */
  7. class GoodsCart Extends Model
  8. {
  9. public function goods(){
  10. return $this->belongsTo(Goods::class);
  11. }
  12. public function sku(){
  13. return $this->belongsTo(GoodsSku::class);
  14. }
  15. }