1楼:折柳成萌
可以的。
直接返回一个map就行了,map中的key就是查询出的字段名称
如何实现mybatis仅更新sql语句中指定的字段
2楼:兄弟连教育
改成下面这样即可。
// 数据表
create table qai_entity (id char(10) not null,value int not null default 0,cre_tim timestamp not null default current_timestamp,
primary key (id))
如何实现mybatis仅更新sql语句中指定的字段
3楼:榔负诺
// 对象 public class entity // 数据
表 create table qai_entity ( id char(10) not null, value int not null defa