Browse Source

已报名人员列表修改

dev_shibei_match
zhangyongzhangyong 5 years ago
parent
commit
beea1a8c40
  1. 2
      epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/dao/ActInfoDao.java
  2. 5
      epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/ActInfoDao.xml

2
epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/dao/ActInfoDao.java

@ -258,7 +258,7 @@ public interface ActInfoDao extends BaseDao<ActInfoEntity> {
* @return java.util.List<com.epmet.dto.result.work.JoinedUserResultDTO> * @return java.util.List<com.epmet.dto.result.work.JoinedUserResultDTO>
* @param actId * @param actId
* @author yinzuomei * @author yinzuomei
* @description 已结束-已参加人员列表 * @description 已结束-已参加人员列表(审核中审核通过)
* @Date 2020/7/24 10:18 * @Date 2020/7/24 10:18
**/ **/
List<JoinedUserResultDTO> queryJoinUserList(String actId); List<JoinedUserResultDTO> queryJoinUserList(String actId);

5
epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/ActInfoDao.xml

@ -551,7 +551,7 @@
limit #{pageNo}, #{pageSize} limit #{pageNo}, #{pageSize}
</select> </select>
<!-- 已结束-参加人员列表 --> <!-- 已结束-报名人员列表(审核中、审核通过) -->
<select id="queryJoinUserList" parameterType="java.lang.String" resultType="com.epmet.dto.result.work.JoinedUserResultDTO"> <select id="queryJoinUserList" parameterType="java.lang.String" resultType="com.epmet.dto.result.work.JoinedUserResultDTO">
SELECT SELECT
aur.id as actUserRelationId, aur.id as actUserRelationId,
@ -572,7 +572,8 @@
and ai.DEL_FLAG='0') and ai.DEL_FLAG='0')
WHERE WHERE
aur.DEL_FLAG = '0' aur.DEL_FLAG = '0'
AND aur.`STATUS` = 'passed' AND aur.`STATUS` != 'refused'
AND aur.`STATUS` != 'canceled'
AND aur.ACT_ID =#{actId} AND aur.ACT_ID =#{actId}
order by aur.CREATED_TIME asc order by aur.CREATED_TIME asc
</select> </select>

Loading…
Cancel
Save