|
|
@ -25,6 +25,7 @@ import com.epmet.dao.LingshanAgentServiceRecordDao; |
|
|
|
import com.epmet.dto.form.lingshan.AgentServiceResiSubmitFormDTO; |
|
|
|
import com.epmet.dto.result.LoginUserDetailsResultDTO; |
|
|
|
import com.epmet.dto.result.agentservice.AgentServiceList4WorkPcResultDTO; |
|
|
|
import com.epmet.dto.result.agentservice.LingShanAgentServiceCategoryResultDTO; |
|
|
|
import com.epmet.dto.result.agentservice.ResiMyCreatedAgentServiceResultDTO; |
|
|
|
import com.epmet.dto.result.agentservice.WorkServiceAgentResultDTO; |
|
|
|
import com.epmet.entity.LingshanAgentServiceCategoryEntity; |
|
|
@ -61,6 +62,11 @@ public class LingShanAgentServiceServiceImpl implements LingShanAgentServiceServ |
|
|
|
|
|
|
|
public static final String AGENT_SERVICE_LOCK_PREFIX = "lingshan:agentservice:statuschange:"; |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<LingShanAgentServiceCategoryResultDTO> listServiceCategories() { |
|
|
|
List<LingshanAgentServiceCategoryEntity> es = agentServiceCategoryDao.selectList(new LambdaQueryWrapper<>()); |
|
|
|
return ConvertUtils.sourceToTarget(es, LingShanAgentServiceCategoryResultDTO.class); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void resiSubmit(AgentServiceResiSubmitFormDTO form) { |
|
|
@ -104,6 +110,9 @@ public class LingShanAgentServiceServiceImpl implements LingShanAgentServiceServ |
|
|
|
log.error("【红色待办】居民-我创建的列表:未找到服务类别数据:{}", e.getServiceCategory()); |
|
|
|
} |
|
|
|
|
|
|
|
// 反序列化附件列表
|
|
|
|
d.setAttachments(JSON.parseArray(e.getAttachments(), String.class)); |
|
|
|
|
|
|
|
return d; |
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
|
|
@ -325,6 +334,9 @@ public class LingShanAgentServiceServiceImpl implements LingShanAgentServiceServ |
|
|
|
d.setProcessTime(serviceEntity.getProcessTime()); |
|
|
|
} |
|
|
|
d.setSatisfaction(serviceEntity.getSatisfication()); |
|
|
|
|
|
|
|
// 反序列化附件列表
|
|
|
|
d.setAttachments(JSON.parseArray(serviceEntity.getAttachments(), String.class)); |
|
|
|
return d; |
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
|
|
|