CustomerExtension.php 255 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. use toolkits\Aec;
  5. class CustomerExtension extends Model
  6. {
  7. /**
  8. * 来源
  9. */
  10. public function source()
  11. {
  12. return $this->hasOne(CustomerSource::class, 'id','source_id');
  13. }
  14. }
  15. ?>