mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-21 02:25:56 +08:00
fix 修正 GenConstants 常量字段格式问题 ;
fix 修正 vo 字段缺少 private ;
This commit is contained in:
parent
f8b2f34a8c
commit
c6d7e667ae
@ -68,31 +68,31 @@ public interface GenConstants {
|
|||||||
/**
|
/**
|
||||||
* BO对象 不需要添加字段
|
* 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"};
|
"update_time", "version"};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* BO对象 不需要编辑字段
|
* 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"};
|
"update_time", "version"};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* VO对象 不需要返回字段
|
* 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"};
|
"update_time", "version"};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* BO对象 不需要查询字段
|
* 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"};
|
"update_time", "remark", "version"};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Entity基类字段
|
* Entity基类字段
|
||||||
*/
|
*/
|
||||||
String[] BASE_ENTITY = {"createDept", "createBy", "createTime", "updateBy", "updateTime"};
|
String[] BASE_ENTITY = {"create_dept", "createBy", "createTime", "updateBy", "updateTime"};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tree基类字段
|
* Tree基类字段
|
||||||
|
|||||||
@ -18,6 +18,6 @@ public class CacheListInfoVo {
|
|||||||
|
|
||||||
private Long dbSize;
|
private Long dbSize;
|
||||||
|
|
||||||
List<Map<String, String>> commandStats;
|
private List<Map<String, String>> commandStats;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -21,6 +21,6 @@ public class DeptTreeSelectVo {
|
|||||||
/**
|
/**
|
||||||
* 下拉树结构列表
|
* 下拉树结构列表
|
||||||
*/
|
*/
|
||||||
List<Tree<Long>> depts;
|
private List<Tree<Long>> depts;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user