Commit 7cad3406 authored by luzhuang's avatar luzhuang

发送通知 类型转换问题

parent 6e9903da
......@@ -30,3 +30,6 @@
@Slf4j : 注解在类上, 为类提供一个属性名为 log 的 log4j 的日志对象
**接口调整日志等级:**
http://localhost:8081/logback/level?level=error
......@@ -138,12 +138,12 @@ public class MTNotificationApiRequestClient {
return false;
}
List<String> haveJurisAccountIds = new ArrayList<>();
List<String> getUserAccountList = (List<String>)haveJurisList.getData();
List<String> getUserAccountList = new ArrayList<>();
log.debug("----------------------通知-list----------------------"+getUserAccountList);
// List<String> getUserAccountLongList = (List<String>)haveJurisList.getData();
// getUserAccountLongList.forEach(getUserAccount ->{
// getUserAccountList.add(getUserAccount);
// });
List<String> getUserAccountLongList = (List<String>)haveJurisList.getData();
getUserAccountLongList.forEach(getUserAccount ->{
getUserAccountList.add(String.valueOf(getUserAccount));
});
MTUserGetsAccountReqDTO mtUserGetsReqDTO = new MTUserGetsAccountReqDTO(message.getCorpId(),getUserAccountList);
log.debug("----------------------通知-调用accountGetUserHead接口----------------------"+mtUserGetsReqDTO);
......
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