<?php namespace app\common\model; use think\Model; // 商品服务标签 class GoodsServe extends Model { public static function getServeLabelTitle($ids) { return static::where('id','in',$ids)->column('title'); } }