监控日志缺失文件

newFrame
anthonywj 2 years ago
parent 4a780bd9a5
commit 64c3962c0d

@ -5,9 +5,9 @@ spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
type: com.zaxxer.hikari.HikariDataSource
jdbc-url: jdbc:mysql://192.168.235.137:33306/udiwms_wqq?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
jdbc-url: jdbc:mysql://127.0.0.1:3306/udiwms_ph1?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: root
password: 123456
hikari:
connection-timeout: 60000
maximum-pool-size: 60
@ -16,9 +16,9 @@ spring:
redis:
database: 8
host: 192.168.235.137
host: 127.0.0.1
port: 6379
password: 123456
# password: 123456
timeout: 300
jedis:
pool:

@ -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…
Cancel
Save