<?php namespace App\Model\Frq; use Illuminate\Database\Eloquent\Model; class InquiryItemsReportModel extends Model { protected $connection = 'frq'; protected $table = 'inquiry_items_report'; protected $primaryKey = 'id'; public $timestamps = false; // 获取指定销售报价 public function getData($id) { if (is_array($id)) return $this->whereIn('id', $id)->get()->toArray(); return $this->where('id', $id)->first(); } }