By default, attachment data isn't returned, you need to request it along with the document.
The way to do that, by adding a parameter to find(), eg:
Map<String, Attachment> doc = __couchDbClientPt.find(Document.class, planId, new Params().attachments()).getAttachments();
HTH