Db.tx(() -> { if(Db.update("update t1 set f1 = ?", 123) > 0){ //事务没提交,这个判断有效吗? Db.update("update t2 set f2 = ?", 456); } return true; });