JFinal的Model是对应数据库某表的一行数据, 一个Model会绑定一条数据的主键, 更新操作都会自动增加上主键的.
所以JFinal 根据条件更新: 是直接上sql的:
int count = Db.update("update account set cash = cash - ? where id = ?", 100, 123);
int count2 = Db.update("update account set cash = cash + ? where id = ?", 100, 456);