Commit 6c536db3 by sdif

查询好评

parent 61fc5763
...@@ -337,6 +337,7 @@ public class EmployeesServiceImpl implements IEmployeesService { ...@@ -337,6 +337,7 @@ public class EmployeesServiceImpl implements IEmployeesService {
IPage<TotalOrderVo> totalOrder = totalOrderMapper.selectVoPage(pageQuery.build(),Wrappers.<TotalOrder>lambdaQuery() IPage<TotalOrderVo> totalOrder = totalOrderMapper.selectVoPage(pageQuery.build(),Wrappers.<TotalOrder>lambdaQuery()
.eq(TotalOrder::getEmId, bo.getId()) .eq(TotalOrder::getEmId, bo.getId())
.eq(TotalOrder::getIsSatisfaction, 1) .eq(TotalOrder::getIsSatisfaction, 1)
.isNotNull(TotalOrder::getEvaluationContent)
.orderByDesc(TotalOrder::getId)); .orderByDesc(TotalOrder::getId));
Optional.ofNullable(totalOrder.getRecords()).ifPresent( Optional.ofNullable(totalOrder.getRecords()).ifPresent(
orderVos -> { orderVos -> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment