Mybatis-Plus查询之条件查询(用户名查询)(批量查询)
上代码
//查询多个用户
//Arrays.asList 工具类
List<User> users = iUserRepository.selectBatchIds(Arrays.asList(1L, 2L, 3L));
users.forEach(System.out::println);
//根据 条件 查询 map 放map
HashMap<String,Object> map = new HashMap();
map.put("name","这里写名字");
List<User> list = iUserRepository.selectByMap(map);
list.forEach(System.out::println);