We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ResultFilter
public interface ResultFilter { /** * ResultFilter * 对 {@link BeanSearcher } 的检索结果做进一步转换处理 * @param result 检索结果 * @param beanMeta 检索实体类的元信息 * @param paraMap 检索参数 * @param fetchType 检索类型 * @param <T> 泛型 * @return 转换后的检索结果 */ default <T> SearchResult<T> doBeanFilter(SearchResult<T> result, BeanMeta<T> beanMeta, Map<String, Object> paraMap, FetchType fetchType) { return result; } /** * 对 {@link MapSearcher } 的检索结果做进一步转换处理 * @param result 检索结果 * @param beanMeta 检索实体类的元信息 * @param paraMap 检索参数 * @param fetchType 检索类型 * @param <T> 泛型 * @return 转换后的检索结果 */ default <T> SearchResult<Map<String, Object>> doMapFilter(SearchResult<Map<String, Object>> result, BeanMeta<T> beanMeta, Map<String, Object> paraMap, FetchType fetchType) { return result; } }
The text was updated successfully, but these errors were encountered:
DbField
PostProcessor
https://github.com/ejlchina/bean-searcher/releases/tag/v3.6.0 https://bs.zhxu.cn/guide/latest/advance.html#%E7%BB%93%E6%9E%9C%E8%BF%87%E6%BB%A4%E5%99%A8%EF%BC%88v3-6-0%EF%BC%89
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: