<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="com.gkhy.hazmat.system.mapper.SysLogininforMapper">
|
|
<resultMap type="com.gkhy.hazmat.system.domain.SysLogininfor" id="SysLogininforResult">
|
<id property="id" column="id" />
|
<result property="userName" column="user_name" />
|
<result property="status" column="status" />
|
<result property="ipaddr" column="ipaddr" />
|
<result property="loginLocation" column="login_location" />
|
<result property="browser" column="browser" />
|
<result property="os" column="os" />
|
<result property="msg" column="msg" />
|
<result property="loginTime" column="login_time" />
|
</resultMap>
|
|
<select id="selectLogininforList" resultMap="SysLogininforResult">
|
select id, user_name, ipaddr, login_location, browser, os, status, msg, login_time from sys_logininfor
|
<where>
|
<if test="ipaddr != null and ipaddr != ''">
|
AND ipaddr like concat('%', #{ipaddr}, '%')
|
</if>
|
<if test="status != null and status != ''">
|
AND status = #{status}
|
</if>
|
<if test="userName != null and userName != ''">
|
AND user_name like concat('%', #{userName}, '%')
|
</if>
|
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
|
AND login_time >= #{params.beginTime}
|
</if>
|
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
|
AND login_time <= #{params.endTime}
|
</if>
|
</where>
|
order by id desc
|
</select>
|
|
<update id="cleanLogininfor">
|
truncate table sys_logininfor
|
</update>
|
</mapper>
|