|
@@ -62,7 +62,7 @@ public class ConsultationServiceImpl extends ServiceImpl<ConsultationMapper, Con
|
|
|
.eq(ObjectUtils.isNotNull(bo.getStatus()), Consultation::getStatus, bo.getStatus())
|
|
|
.eq(ObjectUtils.isNotNull(bo.getType()), Consultation::getType, bo.getType())
|
|
|
.like(StringUtils.isNotBlank(bo.getTitle()), Consultation::getTitle, bo.getTitle())
|
|
|
- .orderByDesc(Consultation::getSort));
|
|
|
+ .orderByDesc(Consultation::getSort,Consultation::getCreateTime));
|
|
|
return entity2Vo(list);
|
|
|
}
|
|
|
|