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
目前entity模式返回指定VO时不支持record类型
public record TestVO( Integer id ) { } easyEntityQuery.queryable(Test.class) .select(TestVO.class) .toList();
上面代码会报错no such constructor: ……$TestVO.()void/newInvokeSpecial
The text was updated successfully, but these errors were encountered:
目前而言是需要对象存在可空构造函数然后进行get set处理
record对象后续考虑一下
Sorry, something went wrong.
No branches or pull requests
目前entity模式返回指定VO时不支持record类型
上面代码会报错no such constructor: ……$TestVO.()void/newInvokeSpecial
The text was updated successfully, but these errors were encountered: