PersonCart.php 398 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Exception;
  4. use think\Model;
  5. /**
  6. * 联系人购物车
  7. */
  8. class PersonCart Extends Model {
  9. protected $name = 'qingdongams_person_cart';
  10. //销售
  11. public function parts() {
  12. return $this->hasOne(Parts::class, 'id', 'parts_id')->field('id,stock,name,num,img,banners,unit,price,description');
  13. }
  14. }