if (type == FldType.C1N) {
Connection1N c = f.getAnnotation(Connection1N.class);
if (c == null) continue;
}
if (type == FldType.NN) {
ConnectionNN c = f.getAnnotation(ConnectionNN.class);
if (c == null || !c.first()) continue;
//if (c == null || c.first()) continue;
}
if (type == FldType.COL) {
Connection1N c = f.getAnnotation(Connection1N.class);
ConnectionNN nn = f.getAnnotation(ConnectionNN.class);
if (c == null && nn == null) continue;
}
f.setAccessible(true);
res.add(f);
}