Browse Source

xiangqing

dev
yinzuomei 3 years ago
parent
commit
3359f9c8b2
  1. 1
      epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/service/impl/WorkActServiceImpl.java

1
epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/service/impl/WorkActServiceImpl.java

@ -1701,6 +1701,7 @@ public class WorkActServiceImpl implements WorkActService {
public ActDetailResultDTO queryActDetail(String actId, String userId) { public ActDetailResultDTO queryActDetail(String actId, String userId) {
ActInfoEntity actInfoEntity=actInfoDao.selectById(actId); ActInfoEntity actInfoEntity=actInfoDao.selectById(actId);
ActDetailResultDTO resultDTO=ConvertUtils.sourceToTarget(actInfoEntity,ActDetailResultDTO.class); ActDetailResultDTO resultDTO=ConvertUtils.sourceToTarget(actInfoEntity,ActDetailResultDTO.class);
resultDTO.setActId(actId);
//查询活动详情 //查询活动详情
List<ActPreviewContentResultDTO> list = actContentDao.selectByActId(actId); List<ActPreviewContentResultDTO> list = actContentDao.selectByActId(actId);
resultDTO.setActContent(list); resultDTO.setActContent(list);

Loading…
Cancel
Save