We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
hibernate-re:5.2.13
/online/cgform/api/exportXls/{code} 这个接口,好像是传时间范围的时候,无论begin还是end 都会解析成 >= 导致数据不准确。
友情提示: 未按格式要求发帖,会直接删掉。
The text was updated successfully, but these errors were encountered:
问题应该是在这里
else { Object var11 = var2.get(var7 + "_begin"); if (var11 != null) { var3.append(" AND " + var7 + ">="); if (org.jeecg.modules.online.cgform.c.f.a(var8)) { var3.append(var11.toString()); } else { var3.append("'" + var11.toString() + "'"); } } Object var12 = var2.get(var7 + "_end"); if (var12 != null) { var3.append(" AND " + var7 + ">="); if (org.jeecg.modules.online.cgform.c.f.a(var8)) { var3.append(var12.toString()); } else { var3.append("'" + var12.toString() + "'"); } } }
Sorry, something went wrong.
已经发现,下个版本发布
No branches or pull requests
版本号:
hibernate-re:5.2.13
问题描述:
/online/cgform/api/exportXls/{code}
这个接口,好像是传时间范围的时候,无论begin还是end 都会解析成 >= 导致数据不准确。
截图&代码:
友情提示: 未按格式要求发帖,会直接删掉。
The text was updated successfully, but these errors were encountered: