| 1234567891011121314151617181920 | <?phpnamespace App\Models\Shop;use Illuminate\Database\Eloquent\Model;class ShopGoodsCdkey extends Model{	protected $connection = 'mysql';    protected $table = 'shop_goods_cdkey';    protected $primaryKey  = 'rid';    protected $keyType = 'int';    public $timestamps = false;    protected $guarded = [];}
 |