feat:审计管理添加数据权限

hangao
wangxy 5 months ago
parent ac6ab1a905
commit 9d796da45f

@ -98,6 +98,7 @@ public class LogAspect
&& StringUtils.isNotEmpty(currentUser.getDept().getDeptName()))
{
operLog.setDeptName(currentUser.getDept().getDeptName());
operLog.setDeptId(currentUser.getDept().getDeptId());
}
}

@ -1,6 +1,11 @@
package com.ruoyi.framework.manager.factory;
import java.util.Objects;
import java.util.TimerTask;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.system.service.ISysUserService;
import lombok.val;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.ruoyi.common.constant.Constants;
@ -29,6 +34,7 @@ public class AsyncFactory
{
private static final Logger sys_user_logger = LoggerFactory.getLogger("sys-user");
/**
* session
*
@ -111,6 +117,7 @@ public class AsyncFactory
String os = userAgent.getOperatingSystem().getName();
// 获取客户端浏览器
String browser = userAgent.getBrowser().getName();
SysUser sysUser = SpringUtils.getBean(ISysUserService.class).selectUserByLoginName(username);
// 封装对象
SysLogininfor logininfor = new SysLogininfor();
logininfor.setLoginName(username);
@ -119,6 +126,9 @@ public class AsyncFactory
logininfor.setBrowser(browser);
logininfor.setOs(os);
logininfor.setMsg(message);
if(Objects.nonNull(sysUser) && Objects.nonNull(sysUser.getDeptId())){
logininfor.setDeptId(sysUser.getDeptId());
}
// 日志状态
if (StringUtils.equalsAny(status, Constants.LOGIN_SUCCESS, Constants.LOGOUT, Constants.REGISTER))
{

@ -52,6 +52,9 @@ public class SysLogininfor extends BaseEntity
@Excel(name = "访问时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date loginTime;
private Long deptId;
public Long getInfoId()
{
return infoId;
@ -142,6 +145,14 @@ public class SysLogininfor extends BaseEntity
this.loginTime = loginTime;
}
public Long getDeptId() {
return deptId;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@ -154,6 +165,7 @@ public class SysLogininfor extends BaseEntity
.append("status", getStatus())
.append("msg", getMsg())
.append("loginTime", getLoginTime())
.append("deptId", getDeptId())
.toString();
}
}

@ -87,6 +87,8 @@ public class SysOperLog extends BaseEntity
@Excel(name = "消耗时间", suffix = "毫秒")
private Long costTime;
private Long deptId;
public Long getOperId()
{
return operId;
@ -267,6 +269,14 @@ public class SysOperLog extends BaseEntity
this.costTime = costTime;
}
public Long getDeptId() {
return deptId;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@ -287,6 +297,7 @@ public class SysOperLog extends BaseEntity
.append("errorMsg", getErrorMsg())
.append("operTime", getOperTime())
.append("costTime", getCostTime())
.append("deptId", getDeptId())
.toString();
}
}

@ -1,6 +1,8 @@
package com.ruoyi.system.service.impl;
import java.util.List;
import com.ruoyi.common.annotation.DataScope;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.common.core.text.Convert;
@ -38,6 +40,7 @@ public class SysLogininforServiceImpl implements ISysLogininforService
* @return
*/
@Override
@DataScope(deptAlias = "d")
public List<SysLogininfor> selectLogininforList(SysLogininfor logininfor)
{
return logininforMapper.selectLogininforList(logininfor);

@ -1,6 +1,8 @@
package com.ruoyi.system.service.impl;
import java.util.List;
import com.ruoyi.common.annotation.DataScope;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.common.core.text.Convert;
@ -37,6 +39,7 @@ public class SysOperLogServiceImpl implements ISysOperLogService
* @return
*/
@Override
@DataScope(deptAlias = "d")
public List<SysOperLog> selectOperLogList(SysOperLog operLog)
{
return operLogMapper.selectOperLogList(operLog);

@ -14,15 +14,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="os" column="os" />
<result property="msg" column="msg" />
<result property="loginTime" column="login_time" />
<result property="deptId" column="dept_id" />
</resultMap>
<insert id="insertLogininfor" parameterType="SysLogininfor">
insert into sys_logininfor (login_name, status, ipaddr, login_location, browser, os, msg, login_time)
values (#{loginName}, #{status}, #{ipaddr}, #{loginLocation}, #{browser}, #{os}, #{msg}, now())
insert into sys_logininfor (login_name, status, ipaddr, login_location, browser, os, msg, login_time,dept_id)
values (#{loginName}, #{status}, #{ipaddr}, #{loginLocation}, #{browser}, #{os}, #{msg}, now(),#{deptId})
</insert>
<select id="selectLogininforList" parameterType="SysLogininfor" resultMap="SysLogininforResult">
select info_id,login_name,ipaddr,login_location,browser,os,status,msg,login_time from sys_logininfor
select info_id,login_name,ipaddr,login_location,browser,os,status,msg,login_time from sys_logininfor d
<where>
<if test="ipaddr != null and ipaddr != ''">
AND ipaddr like concat('%', #{ipaddr}, '%')
@ -39,6 +40,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
AND login_time &lt;= CAST(#{params.endTime} AS TIMESTAMP)
</if>
<!-- 数据范围过滤 -->
${params.dataScope}
</where>
</select>

@ -22,16 +22,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="errorMsg" column="error_msg" />
<result property="operTime" column="oper_time" />
<result property="costTime" column="cost_time" />
<result property="deptId" column="dept_id" />
</resultMap>
<sql id="selectOperLogVo">
select 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, cost_time
from sys_oper_log
from sys_oper_log d
</sql>
<insert id="insertOperlog" parameterType="SysOperLog">
insert into sys_oper_log(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, cost_time, oper_time)
values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, #{costTime}, now())
insert into sys_oper_log(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, cost_time, oper_time,dept_id)
values (#{title}, #{businessType}, #{method}, #{requestMethod}, #{operatorType}, #{operName}, #{deptName}, #{operUrl}, #{operIp}, #{operLocation}, #{operParam}, #{jsonResult}, #{status}, #{errorMsg}, #{costTime}, now(),#{deptId})
</insert>
<select id="selectOperLogList" parameterType="SysOperLog" resultMap="SysOperLogResult">
@ -61,6 +62,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
AND oper_time &lt;= CAST(#{params.endTime} AS TIMESTAMP)
</if>
<!-- 数据范围过滤 -->
${params.dataScope}
</where>
</select>

Loading…
Cancel
Save