常用注解
TableName
MyBatis-Plus根据BaseMapper中指定的泛型(实体类型名)确定数据库中操作的表,如果根据实体类型名找不到数据库中对应的表则会报表不存在异常
//向表中插入一条数据
Test
public void testInsert(){User user new User(null, "张三", 23, "…
Mybatis-Plus 可以通过配置实体类的注解来自动添加创建时间和更新时间,这可以减轻一定的开发量。 1 在实体类中添加注解
public class User {TableId(type IdType.AUTO)private Long id;private String username;private String password;TableField(fill FieldF…
1、当方法参数是Bean的,#{name}是Bean的属性值时,不能加Param注解,否则找不到匹配的参数 Select("select * from flow_node where flow_id#{flowId}")List<WorkFlowNode> getNextNode(WorkFlowNode node);
2、当方法中只有一…