fix(征求意见): 80202

This commit is contained in:
yjz
2024-01-17 10:23:50 +08:00
parent 888668735c
commit aab466353d
@@ -191,7 +191,8 @@ public class ConsultationServiceImpl implements IConsultationService {
fillProperty(processFbStandardConsultations);
processFbConsultationListVO.setProcessFbStandardConsultation(processFbStandardConsultations.get(0));
LambdaQueryWrapper<ProcessFbConsultationList> queryWrapper = new LambdaQueryWrapper<ProcessFbConsultationList>()
.eq(ProcessFbConsultationList::getBusinessId, businessId);
.eq(ProcessFbConsultationList::getBusinessId, businessId)
.last("ORDER BY convert(chapter_number, DECIMAL), id");
IPage<ProcessFbConsultationList> page = processFbConsultationListService.page(new Page<>(pageNo, pageSize), queryWrapper);
setProperty(page.getRecords());
processFbConsultationListVO.setProcessFbConsultationList(page);