From c6d7e667ae257d7c2b28d17acd0e1c0c27dad86f Mon Sep 17 00:00:00 2001 From: zlyx <1242874891@qq.com> Date: Fri, 3 Feb 2023 08:41:08 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E6=AD=A3=20GenConstants=20?= =?UTF-8?q?=E5=B8=B8=E9=87=8F=E5=AD=97=E6=AE=B5=E6=A0=BC=E5=BC=8F=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20;=20fix=20=E4=BF=AE=E6=AD=A3=20vo=20=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E7=BC=BA=E5=B0=91=20private=20;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/generator/constant/GenConstants.java | 10 +++++----- .../com/ruoyi/system/domain/vo/CacheListInfoVo.java | 2 +- .../com/ruoyi/system/domain/vo/DeptTreeSelectVo.java | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ruoyi-modules/ruoyi-generator/src/main/java/com/ruoyi/generator/constant/GenConstants.java b/ruoyi-modules/ruoyi-generator/src/main/java/com/ruoyi/generator/constant/GenConstants.java index 05b346e9d..52e2916f9 100644 --- a/ruoyi-modules/ruoyi-generator/src/main/java/com/ruoyi/generator/constant/GenConstants.java +++ b/ruoyi-modules/ruoyi-generator/src/main/java/com/ruoyi/generator/constant/GenConstants.java @@ -68,31 +68,31 @@ public interface GenConstants { /** * BO对象 不需要添加字段 */ - String[] COLUMNNAME_NOT_ADD = {"createDept", "create_by", "create_time", "del_flag", "update_by", + String[] COLUMNNAME_NOT_ADD = {"create_dept", "create_by", "create_time", "del_flag", "update_by", "update_time", "version"}; /** * BO对象 不需要编辑字段 */ - String[] COLUMNNAME_NOT_EDIT = {"createDept", "create_by", "create_time", "del_flag", "update_by", + String[] COLUMNNAME_NOT_EDIT = {"create_dept", "create_by", "create_time", "del_flag", "update_by", "update_time", "version"}; /** * VO对象 不需要返回字段 */ - String[] COLUMNNAME_NOT_LIST = {"createDept", "create_by", "create_time", "del_flag", "update_by", + String[] COLUMNNAME_NOT_LIST = {"create_dept", "create_by", "create_time", "del_flag", "update_by", "update_time", "version"}; /** * BO对象 不需要查询字段 */ - String[] COLUMNNAME_NOT_QUERY = {"id", "createDept", "create_by", "create_time", "del_flag", "update_by", + String[] COLUMNNAME_NOT_QUERY = {"id", "create_dept", "create_by", "create_time", "del_flag", "update_by", "update_time", "remark", "version"}; /** * Entity基类字段 */ - String[] BASE_ENTITY = {"createDept", "createBy", "createTime", "updateBy", "updateTime"}; + String[] BASE_ENTITY = {"create_dept", "createBy", "createTime", "updateBy", "updateTime"}; /** * Tree基类字段 diff --git a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/CacheListInfoVo.java b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/CacheListInfoVo.java index a11474d33..a8773a4aa 100644 --- a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/CacheListInfoVo.java +++ b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/CacheListInfoVo.java @@ -18,6 +18,6 @@ public class CacheListInfoVo { private Long dbSize; - List> commandStats; + private List> commandStats; } diff --git a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/DeptTreeSelectVo.java b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/DeptTreeSelectVo.java index ac086fe8f..14c00f41d 100644 --- a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/DeptTreeSelectVo.java +++ b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/DeptTreeSelectVo.java @@ -21,6 +21,6 @@ public class DeptTreeSelectVo { /** * 下拉树结构列表 */ - List> depts; + private List> depts; }