feat:增加查找替换逻辑

This commit is contained in:
wangyu 2021-10-14 16:25:32 +08:00
parent 8c4f0d0307
commit 45dd39fd95
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ public class BeanProperty {
DBRefValue dbRefValue = annotations.get(DBRefValue.class).synthesize(); DBRefValue dbRefValue = annotations.get(DBRefValue.class).synthesize();
processDbRef(dbRefValue.value()).ifPresent(ref -> { processDbRef(dbRefValue.value()).ifPresent(ref -> {
property.setType(BeanPropertyType.DB_REF); property.setType(BeanPropertyType.DB_REF);
property.prop("uri", ref).prop("multiple", "true"); property.prop("uri", ref).prop("mode", "multiple");
}); });
} }
} }