| 12345678910111213141516171819202122232425 |
- <?php
- declare(strict_types=1);
- namespace app\common\model;
- use think\Model;
- class ShopList Extends Model
- {
- //客户
- public function customer()
- {
- return $this->hasOne(Customer::class,'id','customer_id');
- }
- public function staff()
- {
- return $this->hasOne(User::class,'id','staff_id');
- }
- }
|