码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis-plus 设置主键自增

时间:2021-06-11 18:35:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:com   自增   自动   tis   pre   integer   自动增长   mamicode   ble   

在实体类中添加@TableId注解:

@Data
public class DxApplication {
  @TableId(type = IdType.AUTO)
  private Long id;
  private String name;
  private Integer sort;

}

在navicat中设置id自动增长:

技术图片

 

mybatis-plus 设置主键自增

标签:com   自增   自动   tis   pre   integer   自动增长   mamicode   ble   

原文地址:https://www.cnblogs.com/qianxiaoPro/p/14874024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!