xionghongzhi

Results 4 comments of xionghongzhi

@longxiangtest 你改了代码么? 这里的问题是singleResult() 取到了多条数据,换成list(),然后在get(0). 这种方式很蠢。。。具体出现的原因不是很清楚。 ``` @SuppressWarnings("unchecked") public U singleResult() { this.resultType = ResultType.SINGLE_RESULT; if (commandExecutor!=null) { return (U) commandExecutor.execute(this); } // 你的commandExecutor为空,但是我不知道为什么会空。。。 return executeSingleResult(Context.getCommandContext()); } ```