Mybatis-Plus
如何查询近三个月的数据
LocalDateTime threeMonthsAgoTodayStart = LocalDateTime.now().minusMonths(3).withDayOfMonth(LocalDateTime.now().getDayOfMonth()).withHour(0).withMinute(0).withSecond(0).withNano(0);
queryWrapper.ge("create_time", threeMonthsAgoTodayStart);
在这首先使用LocalDateTime获取到今天日期及三个月前的日期,然后使用queryWrapper大于获取到的日期,这样就查询到了三个月前到今天的日期。