1. 首页
  2. Java

Mybatis Plus 的常用查询

嵌套 or 查询

wrap.and(wa -> {
    wa.or(w -> {
        w.le(SchedulingEntity::getStartTime, Func.formatDate(start)).ge(SchedulingEntity::getEndTime, Func.formatDate(start));
    }).or(w -> {
        w.le(SchedulingEntity::getStartTime, Func.formatDate(end)).ge(SchedulingEntity::getEndTime, Func.formatDate(end));
    });
});



TOP