Wordpress 4.9 /自定义帖子类型和自定义字段

I have made a Custom Post Type called cargo using CPT UI. I have thereafter added several custom fields (port_of_loading, volume, etc) using Advanced Customs field. I have populated the CPT / fields with a few records.

In my template, I have the following code:

$args = array(
    'post_type' => 'cargo',
    'post_per_page' => '12',
);

$cargo = new WP_Query($args);

echo '<pre>';
var_dump($cargo);
echo '</pre>';

if ($cargo->have_posts()) {

    while ( $cargo->have_posts()) : $cargo->the_post() ;
        echo 'Some cargo'.'<.br>';
        get_field('volume');
    endwhile;   
}

Why can't I see the field names in the var_dump from the postmeta table? I can see field value when I echo them though.

The WP_Query doesn't know the keynames of Advanced Custom fields, this class returns an array of WP_Posts (Wordpress core class), advanced custom fields is a third party plugin.