FieldFilter ff = FieldFilter.create(Cai_company.class, "^name|type|address|products|detail|country|province$");
List<Cai_company> list = Daos.ext(dao, ff).query(Cai_company.class, Cnd.NEW().limit(0, 5));
我想这样写的过滤查询,但是我想让他返回map的集合,除了用Sql以外能直接设置返回类型吗?