Browse Source

修改志愿者精彩说说列表异常bug

feature/screenDataPush
liuchuang 4 years ago
parent
commit
c4025bef46
  1. 4
      esua-epdc/epdc-module/epdc-heart/epdc-heart-server/src/main/resources/mapper/activity/ActInfoDao.xml

4
esua-epdc/epdc-module/epdc-heart/epdc-heart-server/src/main/resources/mapper/activity/ActInfoDao.xml

@ -155,7 +155,7 @@
select * from (
SELECT
actInfo.ID,
actInfo.TITLE as TITLE,
<if test='actType != null and actType != "" and actType == "0"'>actInfo.TITLE as TITLE,</if>
<if test='actType != null and actType != "" and actType == "1"'>CONCAT(actInfo.TITLE,'集锦') as TITLE,</if>
actInfo.HEAD_PIC,
DATE_FORMAT(actInfo.ACT_START_TIME,'%Y-%m-%d %H:%i') ACT_START_TIME,
@ -486,7 +486,7 @@
<select id="selectActInfoDetailResultDTO"
resultType="com.elink.esua.epdc.activity.result.ActInfoDetailResultDTO">
select eai.ID,
<if test='actType != null and actType != "" and actType == "0"'>CONCAT(eai.TITLE,'招募令') as TITLE,</if>
<if test='actType != null and actType != "" and actType == "0"'>eai.TITLE as TITLE,</if>
<if test='actType != null and actType != "" and actType == "1"'>CONCAT(eai.TITLE,'集锦') as TITLE,</if>
<if test='actType == null or actType == ""'>eai.TITLE,</if>
eai.CONTACTS,

Loading…
Cancel
Save