|
@@ -13,7 +13,7 @@
|
|
|
<result property="olevel" column="olevel"/>
|
|
<result property="olevel" column="olevel"/>
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<select id="queryLogPages" resultType="com.template.model.vo.LogVo" resultMap="LogPageMap">
|
|
<select id="queryLogPages" resultType="com.template.model.vo.LogVo" resultMap="LogPageMap">
|
|
|
- SELECT id,create_time,account_num,user_name,oper_mode,otype,operation,ip,olevel FROM `alumni_log`
|
|
|
|
|
|
|
+ SELECT id,create_time,account_num,user_name,oper_mode,otype,operation,ip,olevel FROM `welcome_log`
|
|
|
where deleted = 0
|
|
where deleted = 0
|
|
|
<if test="userName != null and userName != ''">
|
|
<if test="userName != null and userName != ''">
|
|
|
and user_name like '%' #{userName} '%'
|
|
and user_name like '%' #{userName} '%'
|
|
@@ -27,5 +27,6 @@
|
|
|
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''">
|
|
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''">
|
|
|
and create_time BETWEEN #{startTime} AND #{endTime}
|
|
and create_time BETWEEN #{startTime} AND #{endTime}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ order by create_time desc
|
|
|
</select>
|
|
</select>
|
|
|
</mapper>
|
|
</mapper>
|