可修改的自带属性
protected $connection; //数据库连接 protected $table; //表名 protected $primaryKey = 'id'; //主键名,默认为 id protected $keyType = 'int'; //主键类别,默认为int型 public $incrementing = true; //主键是否自增 protected $attributes = [ 'goods_ids' => '[]', //可以配合 $casts, 取出数据......