|
|
|
@ -356,13 +356,11 @@ public class WorkActUserServiceImpl implements WorkActUserService { |
|
|
|
//参与活动统计值
|
|
|
|
HistoricalActInfo historicalActInfo=getHistoricalActInfo(formDTO.getUserId()); |
|
|
|
resultDTO.setSignInActNum(historicalActInfo.getSignInActNum()); |
|
|
|
resultDTO.setSignUpActNum(historicalActInfo.getSignUpActNum()); |
|
|
|
//减去当前的
|
|
|
|
resultDTO.setSignUpActNum(historicalActInfo.getSignUpActNum()-1); |
|
|
|
resultDTO.setObtainPointsActNum(historicalActInfo.getObtainPointsActNum()); |
|
|
|
//历史活动列表
|
|
|
|
List<UserHistoricalActInfoDTO> actInfoList=actUserRelationDao.selectAllByUserId(formDTO.getUserId()); |
|
|
|
for(UserHistoricalActInfoDTO userHistoricalActInfoDTO:actInfoList){ |
|
|
|
|
|
|
|
} |
|
|
|
List<UserHistoricalActInfoDTO> actInfoList=actUserRelationDao.selectAllByUserId(formDTO.getUserId(),formDTO.getCurrentActId()); |
|
|
|
resultDTO.setActInfoList(actInfoList); |
|
|
|
return resultDTO; |
|
|
|
} |
|
|
|
|