Browse Source

点击分享链接,查看活动详情

dev_shibei_match
yinzuomei 4 years ago
parent
commit
3a76d1b047
  1. 10
      epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/act/result/ActDetailResultDTO.java
  2. 2
      epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/act/service/impl/GroupActInfoServiceImpl.java

10
epmet-module/resi-group/resi-group-client/src/main/java/com/epmet/resi/group/dto/act/result/ActDetailResultDTO.java

@ -150,4 +150,14 @@ public class ActDetailResultDTO implements Serializable {
* 已签到人数有人签到自动+1
*/
private Integer signedInNum;
/**
* 网格id
*/
private String gridId;
/**
* 客户id
*/
private String customerId;
}

2
epmet-module/resi-group/resi-group-server/src/main/java/com/epmet/modules/act/service/impl/GroupActInfoServiceImpl.java

@ -698,7 +698,9 @@ public class GroupActInfoServiceImpl extends BaseServiceImpl<GroupActInfoDao, Gr
ActDetailFormDTO actDetailFormDTO = new ActDetailFormDTO();
actDetailFormDTO.setUserId(formDTO.getUserId());
actDetailFormDTO.setGroupActId(invitationRecordDTO.getSourceId());
//调用查看活动详情接口
ActDetailResultDTO actDetailResultDTO = queryActDetail(actDetailFormDTO);
ActDetailByLinkResultDTO resultDTO = ConvertUtils.sourceToTarget(actDetailResultDTO, ActDetailByLinkResultDTO.class);
resultDTO.setInvitationRecordId(formDTO.getInvitationRecordId());
return resultDTO;

Loading…
Cancel
Save