Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class OperationData {
/**
* 元数据列表
*/
private List<Metadata> metadataList ;
private List<Metadata> metadataList;

/**
* 元数据
Expand All @@ -53,5 +53,10 @@ public static class Metadata {
* 元数据名称
*/
private String name;

/**
* 元数据值
*/
private String value;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -842,6 +842,7 @@ public void testUpdateDocumentMetadata() throws Exception {
setId(createResponse.getId());
setType(createResponse.getType());
setName("元数据名称");
setValue("元数据值");
}});
}};
setMetadataList(metadataList);
Expand Down