|
|
@ -185,17 +185,19 @@ |
|
|
|
<if test="timestamp != null"> |
|
|
|
<![CDATA[ AND DATE_FORMAT(actInfo.CREATED_TIME,'%Y-%m-%d %H:%i:%s') <= ]]> #{timestamp} |
|
|
|
</if> |
|
|
|
<if test='actId != null and actId != "" '> |
|
|
|
AND ID = #{actId} |
|
|
|
</if> |
|
|
|
<if test='actType != null and actType != "" and actType == "0"'> |
|
|
|
<![CDATA[ AND DATE_FORMAT(actInfo.SIGNUP_END_TIME,'%Y-%m-%d %H:%i:%s') >= ]]> #{timestamp} |
|
|
|
ORDER BY |
|
|
|
actInfo.PUBLISH_TIME DESC |
|
|
|
</if> |
|
|
|
<if test='actType != null and actType != "" and actType == "1"'> |
|
|
|
<![CDATA[ AND DATE_FORMAT(actInfo.SIGNUP_END_TIME,'%Y-%m-%d %H:%i:%s') <= ]]> #{timestamp} |
|
|
|
ORDER BY |
|
|
|
actInfo.ACT_START_TIME |
|
|
|
</if> |
|
|
|
<if test='actId != null and actId != "" '> |
|
|
|
AND ID = #{actId} |
|
|
|
</if> |
|
|
|
ORDER BY |
|
|
|
actInfo.CREATED_TIME DESC |
|
|
|
LIMIT #{pageIndex},#{pageSize} |
|
|
|
</select> |
|
|
|
<select id="signupListItemsByApp" resultMap="actAppResultMap"> |
|
|
@ -252,7 +254,7 @@ |
|
|
|
and actInfo.ACT_STATUS = '1' |
|
|
|
</if> |
|
|
|
ORDER BY |
|
|
|
actInfo.CREATED_TIME DESC |
|
|
|
relation.SIGNUP_TIME DESC |
|
|
|
LIMIT #{pageIndex},#{pageSize} |
|
|
|
</select> |
|
|
|
<resultMap type="com.elink.esua.epdc.activity.result.ActInfoDetailAppResultDTO" id="actDetailAppResultMap"> |
|
|
|