GoodsServe.php 235 B

123456789101112
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 商品服务标签
  5. class GoodsServe extends Model
  6. {
  7. public static function getServeLabelTitle($ids)
  8. {
  9. return static::where('id','in',$ids)->column('title');
  10. }
  11. }