监控日志缺失文件
parent
4a780bd9a5
commit
64c3962c0d
@ -0,0 +1,79 @@
|
||||
<?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.glxp.api.admin.dao.monitor.SysLogininforMapper">
|
||||
|
||||
<resultMap type="com.glxp.api.admin.entity.monitor.SysLogininfor" id="SysLogininforResult">
|
||||
<id property="infoId" column="info_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" parameterType="com.glxp.api.admin.req.monitor.SysLogininforRequest"
|
||||
resultMap="SysLogininforResult">
|
||||
|
||||
select *
|
||||
FROM sys_logininfor
|
||||
<where>
|
||||
<if test="infoId != null ">
|
||||
and info_id = #{infoId}
|
||||
</if>
|
||||
<if test="userName != null and userName != '' ">
|
||||
AND `user_name` = #{userName}
|
||||
</if>
|
||||
<if test="status != null and status != '' ">
|
||||
AND `status` = #{status}
|
||||
</if>
|
||||
<if test="ipaddr != null ">
|
||||
AND `ipaddr` = #{ipaddr}
|
||||
</if>
|
||||
<if test="loginLocation != null ">
|
||||
AND `login_location` = #{loginLocation}
|
||||
</if>
|
||||
|
||||
</where>
|
||||
</select>
|
||||
|
||||
|
||||
<select id="selectById" parameterType="java.lang.Long"
|
||||
resultMap="SysLogininforResult">
|
||||
select *
|
||||
FROM sys_logininfor
|
||||
WHERE oper_id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insert" keyProperty="infoId" useGeneratedKeys="true"
|
||||
parameterType="com.glxp.api.admin.entity.monitor.SysLogininfor">
|
||||
INSERT INTO sys_logininfor( `user_name`, `status`, ipaddr, `login_location`, browser, `os`, msg
|
||||
, login_time)
|
||||
values (#{userName},
|
||||
#{status}, #{ipaddr},
|
||||
#{loginLocation}, #{browser}, #{os}, #{msg}, #{loginTime})
|
||||
</insert>
|
||||
|
||||
<delete id="delete" parameterType="java.lang.Long">
|
||||
delete
|
||||
from sys_logininfor
|
||||
where info_id = #{id}
|
||||
</delete>
|
||||
|
||||
|
||||
<delete id="deleteBatchIds" parameterType="java.util.List"
|
||||
>
|
||||
delete
|
||||
from sys_logininfor
|
||||
where info_id in
|
||||
<foreach item="item" index="index" collection="infoIds" open="(" separator="," close=")">
|
||||
#{item}
|
||||
</foreach>
|
||||
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,110 @@
|
||||
<?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.glxp.api.admin.dao.monitor.SysOperLogMapper">
|
||||
|
||||
<resultMap type="com.glxp.api.admin.entity.monitor.SysOperLog" id="SysOperLogResult">
|
||||
<id property="operId" column="oper_id"/>
|
||||
<result property="title" column="title"/>
|
||||
<result property="businessType" column="business_type"/>
|
||||
<result property="method" column="method"/>
|
||||
<result property="requestMethod" column="request_method"/>
|
||||
<result property="operatorType" column="operator_type"/>
|
||||
<result property="operName" column="oper_name"/>
|
||||
<result property="deptName" column="dept_name"/>
|
||||
<result property="operUrl" column="oper_url"/>
|
||||
<result property="operIp" column="oper_ip"/>
|
||||
<result property="operLocation" column="oper_location"/>
|
||||
<result property="operParam" column="oper_param"/>
|
||||
<result property="jsonResult" column="json_result"/>
|
||||
<result property="status" column="status"/>
|
||||
<result property="errorMsg" column="error_msg"/>
|
||||
<result property="operTime" column="oper_time"/>
|
||||
<result property="operUserName" column="operUserName"/>
|
||||
</resultMap>
|
||||
|
||||
|
||||
<select id="selectList" parameterType="com.glxp.api.admin.req.monitor.SysOperLogRequest"
|
||||
resultMap="SysOperLogResult">
|
||||
|
||||
select sys_oper_log.*,auth_user.employeeName operUserName
|
||||
FROM sys_oper_log
|
||||
left join auth_user
|
||||
on sys_oper_log.oper_name = auth_user.id
|
||||
<where>
|
||||
<if test="operId != null ">
|
||||
and oper_id = #{operId}
|
||||
</if>
|
||||
<if test="title != null and title != '' ">
|
||||
AND `title` = #{title}
|
||||
</if>
|
||||
<if test="businessType != null and businessType != '' ">
|
||||
AND `business_type` = #{businessType}
|
||||
</if>
|
||||
<if test="method != null ">
|
||||
AND `method` = #{method}
|
||||
</if>
|
||||
<if test="requestMethod != null ">
|
||||
AND `request_method` = #{requestMethod}
|
||||
</if>
|
||||
|
||||
<if test="operatorType != null ">
|
||||
AND `operator_type` = #{operatorType}
|
||||
</if>
|
||||
<if test="operName != null ">
|
||||
AND `oper_name` = #{operName}
|
||||
</if>
|
||||
<if test="deptName != null ">
|
||||
AND `dept_name` = #{deptName}
|
||||
</if>
|
||||
<if test="operUrl != null ">
|
||||
AND `oper_url` = #{operUrl}
|
||||
</if>
|
||||
<if test="operIp != null ">
|
||||
AND `oper_ip` = #{operIp}
|
||||
</if>
|
||||
<if test="status != null ">
|
||||
AND `status` = #{status}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
|
||||
<select id="selectById" parameterType="java.lang.Long"
|
||||
resultMap="SysOperLogResult">
|
||||
select *
|
||||
FROM sys_oper_log
|
||||
WHERE oper_id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insert" keyProperty="operIp" useGeneratedKeys="true"
|
||||
parameterType="com.glxp.api.admin.entity.monitor.SysOperLog">
|
||||
INSERT INTO sys_oper_log(`oper_id`, `title`, business_type, `method`, `request_method`, operator_type
|
||||
, oper_name, dept_name, oper_url, oper_ip, oper_location, oper_param, json_result, status,
|
||||
error_msg, oper_time)
|
||||
values ( #{operId},
|
||||
#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}
|
||||
, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}
|
||||
, #{errorMsg}, #{operTime})
|
||||
</insert>
|
||||
|
||||
<delete id="delete" parameterType="java.lang.Long">
|
||||
delete
|
||||
from sys_oper_log
|
||||
where oper_id = #{id}
|
||||
</delete>
|
||||
|
||||
|
||||
<delete id="deleteBatchIds" parameterType="java.util.List"
|
||||
>
|
||||
delete
|
||||
from sys_oper_log
|
||||
where oper_id in
|
||||
<foreach item="item" index="index" collection="ids" open="(" separator="," close=")">
|
||||
#{item}
|
||||
</foreach>
|
||||
|
||||
</delete>
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue