predicate = StringUtils.isEmpty(param.getParam().get("start")) ? predicate : ExpressionUtils.and(predicate, qMonthcheckplan.start.goe(DateUtils.str2day(param.getParam().get("start").toString())));
predicate = StringUtils.isEmpty(param.getParam().get("end")) ? predicate : ExpressionUtils.and(predicate, qMonthcheckplan.end.loe(DateUtils.str2day(param.getParam().get("end").toString())));
大于等于 :goe
小于等于:loe