int count = dao.update(XXX.class, Chain
.make("giveCount", 0.0)
.add("amount", 0.0)
.add("state", true), Cnd
.where("abcId", "=", 1)
.and("accessId", "=", 2));
System.out.println(count);
代码执行会返回1,但sql在mysql执行返回0,请问是什么原因?