There is no getter for property named ‘null‘ in ‘实体类‘

使用mybatis plus的 updateById出现这个错
There is no getter for property named ‘null’ in ‘实体类’
跟踪了代码发现多了个 null 的属性。
解决方法:

在该实体类表示主键的属性上添加注解@TableId(value="id")
id表示数据表的主键名

There is no getter for property named ‘null‘ in ‘实体类‘

使用mybatis plus的 updateById出现这个错
There is no getter for property named ‘null’ in ‘实体类’
跟踪了代码发现多了个 null 的属性。
解决方法:

在该实体类表示主键的属性上添加注解@TableId(value="id")
id表示数据表的主键名