1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace app\admin\model;
- use think\Model;
- use app\admin\model\Area;
- use app\admin\model\MobileProxyStatus;
- class Mobile extends \app\common\model\Mobile
- {
- protected $relationSearch = true;
-
- public static $flowBrand = [
- 'flow_limit_yd' => '中国移动',
- 'flow_limit_lt' => '中国联通',
- 'flow_limit_dx' => '中国电信',
- 'flow_limit_gd' => '中国广电',
- ];
- // 追加属性
- protected $append = [
- ];
- public function info()
- {
- return parent::info()->setEagerlyType(0); // TODO: Change the autogenerated stub
- }
- public function proxy(){
- return $this->belongsTo(Admin::class,'proxy_id','id',[],'left')->setEagerlyType(0);;
- }
- public function getLogoAttr($logo,$data=[]){
- return $logo;
- }
- public function getActivityTimeEndAttr($a){
- return $a;
- }
- /**
- * 代理主站商品状态
- */
- public function proxyStatus(){
- return $this->hasMany(MobileProxyStatus::class, 'mobile_id', 'id');
- }
- }
|