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
怎么接受不定字段的返回值 用 List<HashMap<String,Object>>接受不到
public interface BiSellerReportDao extends JpaRepository<BiSellerReport, Long>, JpaSpecificationExecutor { @QueryFenix(value = "BiSellerReportDao.page", nativeQuery = true) Page page(@param("vo") BiSellerReportVo vo, Pageable pageable);
BiSellerReport findByComputingTimeAndAndIsDeletedFalseAndSellerCode(String dateTime,String sellerCode); @QueryFenix(value = "BiSellerReportDao.queryBiSellerReport") List<HashMap<String,Object>> queryBiSellerReport(@Param("vo") BiSellerReportVo vo, Pageable pageable);
}
The text was updated successfully, but these errors were encountered:
解决了 xml里面不要写 resultType就行了
Sorry, something went wrong.
No branches or pull requests
怎么接受不定字段的返回值 用 List<HashMap<String,Object>>接受不到
public interface BiSellerReportDao extends JpaRepository<BiSellerReport, Long>, JpaSpecificationExecutor {
@QueryFenix(value = "BiSellerReportDao.page", nativeQuery = true)
Page page(@param("vo") BiSellerReportVo vo, Pageable pageable);
}
The text was updated successfully, but these errors were encountered: