12345678910111213141516171819 |
- <?php
- namespace app\model;
- use think\Model;
- class Medal extends Model
- {
- public function employeeMedal(){
- return $this->hasOne(EmployeeMedal::class,'medal_id','id');
- }
- /**
- * 图片拼接
- */
- public function getPathAttr($value)
- {
- if (empty($value)) return $value;
- $ali_oss_bindurl = config('app.ali_oss_bindurl');
- $url = 'https://' . $ali_oss_bindurl . '/' . $value;
- return $url;
- }
- }
|