MyBatis Plus使用@TableField(exist = false)标识非数据库字段
MyBatis Plus中使用
@TableField(exist = false)
表示当前属性不是数据库的字段,但在项目中必须使用,这样在新增等使用bean的时候,mybatis-plus就会忽略这个属性且报错
eg:
@TableField(exist = false) private List<PlanTask> children = new ArrayList<>();
MyBatis Plus中使用
@TableField(exist = false)
表示当前属性不是数据库的字段,但在项目中必须使用,这样在新增等使用bean的时候,mybatis-plus就会忽略这个属性且报错
eg:
@TableField(exist = false) private List<PlanTask> children = new ArrayList<>();