1234567891011121314151617181920212223242526 |
- <?php
- namespace app\model;
- use think\Model;
- class HuomaZima extends Model
- {
- public function huoma_user()
- {
- return $this->hasMany(HuomaUser::class, 'bind_code','id');
- }
- public function company(){
- return $this->hasOne(Company::class, 'root_id','root_id');
- }
- /**
- * 图片拼接
- */
- public function getQrcodeImgAttr($value)
- {
- if (empty($value)) return $value;
- $ali_oss_bindurl = config('app.ali_oss_bindurl');
- $url = 'http://' . $ali_oss_bindurl . '/' . $value;
- return $url;
- }
- }
|