Mybatis利用useGeneratedKeys返回插入记录id, Parameter 'id' not found异常
解决方法:取值时,通过对象.属性获取值
@Options(useGeneratedKeys=true,keyProperty = "c.id")
void insertPatient(@Param("c") Checkinfo c);
Mybatis利用useGeneratedKeys返回插入记录id, Parameter 'id' not found异常
解决方法:取值时,通过对象.属性获取值
@Options(useGeneratedKeys=true,keyProperty = "c.id")
void insertPatient(@Param("c") Checkinfo c);
有建议,请留言!