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

Commit c7a0c95c authored by 胡佳晨's avatar 胡佳晨

admin

parent 699431b4
......@@ -104,8 +104,12 @@ public class ScoreServiceImpl implements IScoreService {
List<StoneScoreListDto> dto = stoneScoreUserMapper.list(param);
List<StoneScoreLogs> dataList = stoneScoreLogsMapper.selectList(Wrappers.lambdaQuery(StoneScoreLogs.class).eq(StoneScoreLogs::getUid, uid));
StoneUserScoreDetailVo vo = new StoneUserScoreDetailVo();
vo.setDto(dto.get(0));
vo.setScoreLogs(dataList);
if(dataList==null || dataList.size()==0) {
}else{
vo.setDto(dto.get(0));
vo.setScoreLogs(dataList);
}
return vo;
}
}
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