SpuBrandModel.php 266 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace App\Model; use Illuminate\Database\Eloquent\Model; //联营分类模型 class SpuBrandModel extends Model { protected $connection = 'spu'; protected $table='brand'; protected $primaryKey = 'brand_id'; public $timestamps = false; }