记得上下班打卡 | git大法好,push需谨慎

Commit e59d1ef0 authored by anjiabin's avatar anjiabin

提交chime社交相关

parent 0a53ccf2
package com.liquidnet.service.chime.service.impl;
import com.liquidnet.commons.lang.util.BeanUtil;
import com.liquidnet.commons.lang.util.JsonUtils;
import com.liquidnet.commons.lang.util.StringUtil;
import com.liquidnet.service.adam.dto.rsc.AdamChimeUinfoDto;
import com.liquidnet.service.chime.biz.ChimeUserBiz;
......@@ -50,6 +51,7 @@ public class ChimePerformanceServiceImpl implements IChimePerformanceService {
*/
@Override
public NewPageResult<ChimeUserInfoDto> getUserListByCon(ChimeUserListQueryReqDto reqDto) {
log.info("getUserListByCon req:{} ", JsonUtils.toJson(reqDto));
NewPageResult<ChimeUserInfoDto> pagedResult = ObjectUtil.getChimeUserInfoDtoPagedResult();
try {
int pageNum = reqDto.getPageNum() - 1;
......@@ -121,11 +123,13 @@ public class ChimePerformanceServiceImpl implements IChimePerformanceService {
//获取标签转换
List<ChimeUserTagsMappingVo> userTagsMappingVoList = item.getUserTagsVoList();
List<ChimeUserTagDto> userTagDtoList = ObjectUtil.getChimeUserTagDtoList();
if(StringUtil.isNotNull(userTagsMappingVoList)){
userTagsMappingVoList.stream().forEach(chimeUserTagsMappingVo -> {
ChimeUserTagDto userTagDto = ChimeUserTagDto.getNew();
BeanUtil.copy(chimeUserTagsMappingVo,userTagDto);
userTagDtoList.add(userTagDto);
});
}
dto.setUserTags(userTagDtoList);
dtoList.add(dto);
}
......
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