Mobile.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use app\admin\model\Area;
  5. use app\admin\model\MobileProxyStatus;
  6. class Mobile extends \app\common\model\Mobile
  7. {
  8. protected $relationSearch = true;
  9. public static $flowBrand = [
  10. 'flow_limit_yd' => '中国移动',
  11. 'flow_limit_lt' => '中国联通',
  12. 'flow_limit_dx' => '中国电信',
  13. 'flow_limit_gd' => '中国广电',
  14. ];
  15. // 追加属性
  16. protected $append = [
  17. ];
  18. public function info()
  19. {
  20. return parent::info()->setEagerlyType(0); // TODO: Change the autogenerated stub
  21. }
  22. public function proxy(){
  23. return $this->belongsTo(Admin::class,'proxy_id','id',[],'left')->setEagerlyType(0);;
  24. }
  25. public function getLogoAttr($logo,$data=[]){
  26. return $logo;
  27. }
  28. public function getActivityTimeEndAttr($a){
  29. return $a;
  30. }
  31. /**
  32. * 代理主站商品状态
  33. */
  34. public function proxyStatus(){
  35. return $this->hasMany(MobileProxyStatus::class, 'mobile_id', 'id');
  36. }
  37. }