MybatisPlus中插入数据后获取该对象主键值的实现中插入数据后获取该对象主键值的实现
主要介绍了MybatisPlus中插入数据后获取该对象主键值,文中通过示例代码介绍的非常详细,对大家的学习或
者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
实体对象 主键IdType要设置为AUTO 表示数据库ID自增
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
public class Employee implements Serializable {
private static final long serialVersionUID = 1L;
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
private String lastName;
private String email;
private Integer gender;
private Integer age;
}
返回的实体就会包含主键值
@PostMapping("add")
@ResponseBody
public Employee addEmployee() {
Employee employee = new Employee();
employee.setLastName("chen").setAge(18).setEmail("10000@qq.com").setGender(1);
employeeService.saveOrUpdate(employee);
return employee;
}
或者mapper层使用insert方法也会返回主键
@Override
public Employee saveEmp(Employee employee) {
baseMapper.insert(employee);
return employee;
}
到此这篇关于MybatisPlus中插入数据后获取该对象主键值的文章就介绍到这了,更多相关MybatisPlus 获取对象主键值内容请
搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!
评论1
最新资源