packageorg.example.Entity;importcom.baomidou.mybatisplus.annotation.IdType;importcom.baomidou.mybatisplus.annotation.TableId;importcom.baomidou.mybatisplus.annotation.TableName; @TableName("users")//不一致时,需要映射publicclassMyUser { @TableId(type=IdType.AUTO)privateintid;privateString name;private...
private Integer ID; 想通过如下代码在运行时进行TableId的IdType修改,下面的代码已经起作用了,但是MyBatisPlus在生成sql的时候依然按照之前的注解来做的,并没有生效。请问有什么办法可以实现我的需求 CooperateIns cooper = new CooperateIns(); Field field = cooper.getClass().getDeclaredField("ID"); TableId...