fix 修正 GenConstants 常量字段格式问题 ;

fix 修正 vo 字段缺少 private ;
This commit is contained in:
zlyx 2023-02-03 08:41:08 +08:00
parent fbc587ab9e
commit b984e2fcf7
3 changed files with 7 additions and 7 deletions

View File

@ -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基类字段

View File

@ -18,6 +18,6 @@ public class CacheListInfoVo {
private Long dbSize; private Long dbSize;
List<Map<String, String>> commandStats; private List<Map<String, String>> commandStats;
} }

View File

@ -21,6 +21,6 @@ public class DeptTreeSelectVo {
/** /**
* 下拉树结构列表 * 下拉树结构列表
*/ */
List<Tree<Long>> depts; private List<Tree<Long>> depts;
} }