Browse Source

【功能优化】活动详情增加活动封面图片(coverPic)

national_dev
Bill 2 years ago
parent
commit
d710e2a387
  1. 5
      code/smart-community/epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/resi/ResiActDetailResultDTO.java
  2. 1
      code/smart-community/epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/ActInfoDao.xml

5
code/smart-community/epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/resi/ResiActDetailResultDTO.java

@ -43,6 +43,11 @@ public class ResiActDetailResultDTO implements Serializable {
*/
private String title;
/**
* 封面图片
*/
private String coverPic;
/**
* 联系人
*/

1
code/smart-community/epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/ActInfoDao.xml

@ -428,6 +428,7 @@
SELECT
i.ID actId,
i.TITLE title,
i.COVER_PIC coverPic,
i.SPONSOR_CONTACTS contacts,
i.SPONSOR_TEL tel,
DATE_FORMAT(i.SIGN_UP_END_TIME,'%Y-%m-%d %H:%i') signUpEndTime,

Loading…
Cancel
Save