In the magento2 sales_order_grid.xml, there has configuration for output the multiselect column;
<selectionsColumn name="ids">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="indexField" xsi:type="string">entity_id</item>
</item>
</argument>
</selectionsColumn>
it's default use template 'vendor/magento/module-ui/view/base/web/templates/grid/cells/multiselect.html' and js 'vendor/magento/module-ui/view/base/web/js/grid/columns/multiselect.js'.
Now,I don't want to output the checkbox for some order(such as order's entity_id is '1'),if some one know how to realize it.Likes component '<column>',we can specific class for it's specific datasource,is '<selectionsColumn>' has the similar method or parameter.