|
|
@ -474,7 +474,7 @@ public class LingShanAgentServiceServiceImpl implements LingShanAgentServiceServ |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<LingShanScreenServiceRstDTO> screenServiceList(String orgType, String orgId, String dataType) { |
|
|
|
public List<LingShanScreenServiceRstDTO> screenServiceList(String orgType, String orgId, String dataType, String agentId) { |
|
|
|
String orgIdPath; |
|
|
|
|
|
|
|
if (StringUtils.isAnyBlank(orgType, orgId)) { |
|
|
@ -503,6 +503,7 @@ public class LingShanAgentServiceServiceImpl implements LingShanAgentServiceServ |
|
|
|
LambdaQueryWrapper<LingshanAgentServiceRecordEntity> q = new LambdaQueryWrapper<>(); |
|
|
|
q.likeRight(LingshanAgentServiceRecordEntity::getOrgIdPath, orgIdPath); |
|
|
|
q.eq(LingshanAgentServiceRecordEntity::getProcessStatus, processStatus); |
|
|
|
q.eq(StringUtils.isNotBlank(agentId), LingshanAgentServiceRecordEntity::getAgentId, agentId); |
|
|
|
|
|
|
|
List<LingshanAgentServiceRecordEntity> serviceRecords = agentServiceRecordDao.selectList(q); |
|
|
|
return serviceRecords.stream().map(rec -> { |
|
|
|