Custom Taxonomy Sort For a Custom Query

$args = array(
   'post_type' => 'product',
    'tax_query' => array(
        array(
            'taxonomy' => 'icomcat',
            'field' => 'id',
            'terms' => array($prodcatid)
        )
    )
);
$postslist = get_posts( $args );