From e0ba2ba3c5f7ad3f289c6ad9278023d7f9e46f66 Mon Sep 17 00:00:00 2001
From: 心悦李国楠 <332435948@qq.com>
Date: Fri, 03 Jul 2020 14:24:33 +0800
Subject: [PATCH] RedisCache中所有方法参数添加final,并优化list取出效率,添加其它常用redis方法

---
 ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysOperLog.java |   14 --------------
 1 files changed, 0 insertions(+), 14 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysOperLog.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysOperLog.java
index 10320fe..f3b54ff 100644
--- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysOperLog.java
+++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/domain/SysOperLog.java
@@ -58,10 +58,6 @@
     @Excel(name = "操作地址")
     private String operIp;
 
-    /** 操作地点 */
-    @Excel(name = "操作地点")
-    private String operLocation;
-
     /** 请求参数 */
     @Excel(name = "请求参数")
     private String operParam;
@@ -191,16 +187,6 @@
     public void setOperIp(String operIp)
     {
         this.operIp = operIp;
-    }
-
-    public String getOperLocation()
-    {
-        return operLocation;
-    }
-
-    public void setOperLocation(String operLocation)
-    {
-        this.operLocation = operLocation;
     }
 
     public String getOperParam()

--
Gitblit v1.9.3