Mobile.php 397 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class Mobile extends \app\common\model\Mobile
  5. {
  6. // 追加属性
  7. protected $append = [
  8. ];
  9. public function info()
  10. {
  11. return parent::info()->setEagerlyType(0); // TODO: Change the autogenerated stub
  12. }
  13. public function proxy(){
  14. return $this->belongsTo(Admin::class,'proxy_id')->setEagerlyType(0);
  15. }
  16. }