// 获取capped属性,判断是否为固定集合
en.setCappedSize(co.cappedSize());
en.setCappedMax(co.cappedMax());
// 获得集合索引
CoIndexes cix = type.getAnnotation(CoIndexes.class);
if (null != cix)
for (String str : cix.value())
en.addIndex(str);
// 循环所有的字段
for (Field fld : en.getMirror().getFields()) {
CoField cf = fld.getAnnotation(CoField.class);