www.wdadmin.cn // +---------------------------------------------------------------------- namespace app\api\model\wdsxh\member; use think\Model; class CompanyFixedInformation extends Model { // 表名 protected $name = 'wdsxh_company_fixed_information'; protected function getPersonalCarouselImagesAttr($value) { $value = wdsxh_full_url($value); if (is_array($value)){ $value = implode(',',$value); } return $value; } protected function getCompanyCarouselImagesAttr($value) { $value = wdsxh_full_url($value); if (is_array($value)){ $value = implode(',',$value); } return $value; } }