mybatis plus 自增长主键如何获取
注意在model对象里面配置以下注解即可在调用save()方法后通过对象get获取
@TableId(type = IdType.AUTO)
BigInteger deptId;
原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/243771.html
mybatis plus 自增长主键如何获取
注意在model对象里面配置以下注解即可在调用save()方法后通过对象get获取
@TableId(type = IdType.AUTO)
BigInteger deptId;
原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/243771.html