|
|
@@ -581,10 +581,10 @@ public class PublicInquiryServiceImpl implements PublicInquiryService {
|
|
|
info.expression(logical);
|
|
|
}
|
|
|
if (filter.getFromDate() != null) {
|
|
|
- info.expression(PredicateUtils.gte("date", new Date(filter.getFromDate()), false));
|
|
|
+ info.expression(PredicateUtils.gte("offerTime", new Date(filter.getFromDate()), false));
|
|
|
}
|
|
|
if (filter.getEndDate() != null) {
|
|
|
- info.expression(PredicateUtils.lte("date", new Date(filter.getEndDate()), false));
|
|
|
+ info.expression(PredicateUtils.lte("offerTime", new Date(filter.getEndDate()), false));
|
|
|
}
|
|
|
}
|
|
|
return itemInfoDao.findAll(new Specification<PublicInquiryItemInfo>() {
|