摘要:
批量查询 @Test public void testSelectByBatch() { //批量查询 List<User> users = userMapper.selectBatchIds(Arrays.asList(1, 2, 3)); users.forEach(System.out::pr 阅读全文
摘要:
自动填充时间 数据库中添加字段 create_time和update_time,用代码实现自动填充时间: 1、在实体类添加注解@TableField 2、写一个处理类继承 MetaObjectHandler。 @Component //一定不能忘了把该组件添加到IOC容器中 @Slf4j publi 阅读全文