|
|
@ -122,6 +122,17 @@ public class LingShanAgentServiceServiceImpl implements LingShanAgentServiceServ |
|
|
|
log.error("【红色待办】居民-我创建的列表:未找到服务类别数据:{}", e.getServiceCategory()); |
|
|
|
} |
|
|
|
|
|
|
|
// 满意度中文
|
|
|
|
if (e.getSatisfication() != null) { |
|
|
|
if (e.getSatisfication().intValue() == -1) { |
|
|
|
d.setSatisficationName("不满意"); |
|
|
|
} else if (e.getSatisfication().intValue() == 0) { |
|
|
|
d.setSatisficationName("基本满意"); |
|
|
|
} else if (e.getSatisfication().intValue() == 1) { |
|
|
|
d.setSatisficationName("非常满意"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 反序列化附件列表
|
|
|
|
d.setAttachments(JSON.parseArray(e.getAttachments(), String.class)); |
|
|
|
|
|
|
|