Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有问题,在我的图片中。我使用 mybatis,countByExample 方法是由 MyBatis Generator 生成的。你能帮我看看吗?
https://i.stack.imgur.com/e3arE.png
https://i.stack.imgur.com/WOp1f.png
看起来您正在jobCtrlExample方法调用之间重用。如果这样做,则需要在设置新条件之前清除以前的条件。可能添加此行将修复它:
jobCtrlExample
jobCtrlExample.clear();
最好为每个方法创建一个新的示例类。