如何实现MyBatis仅更新SQL语句中指定的字段
1个回答
展开全部
// 对象
public class Entity {
private String id = null;
private int value = null;
private Timestamp createTime = null;
// getter and setter ...
}
// 数据表
CREATE TABLE qai_entity (
id CHAR(10) NOT NULL,
value INT NOT NULL DEFAULT 0,
create_time TIMESTAMP NOT NULL,
PRIMARY KEY (id)
)
// MyBatis 配置
public class Entity {
private String id = null;
private int value = null;
private Timestamp createTime = null;
// getter and setter ...
}
// 数据表
CREATE TABLE qai_entity (
id CHAR(10) NOT NULL,
value INT NOT NULL DEFAULT 0,
create_time TIMESTAMP NOT NULL,
PRIMARY KEY (id)
)
// MyBatis 配置
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询