| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package jnpf.model;
- import lombok.Data;
- /**
- * 在线开发常用常量
- */
- @Data
- public class OnlineDevData {
- /**
- * 用于判断是否是有表数据
- */
- public static final String TABLE_CONST = "[]";
- /**
- * 详情id副本
- */
- public static final String INFO_ID = "_id";
- //以下列表类型
- /**
- * 列表类型:1-普通列表
- */
- public static final Integer COLUMNTYPE_ONE = 1;
- /**
- * 列表类型:2-左侧树
- */
- public static final Integer COLUMNTYPE_TOW = 2;
- /**
- * 列表类型:3-分组
- */
- public static final Integer COLUMNTYPE_THREE = 3;
- /**
- * 列表类型:4-行内编辑
- */
- public static final Integer COLUMNTYPE_FOUR = 4;
- /**
- * 列表类型:5-树形列表
- */
- public static final Integer COLUMNTYPE_FIVE = 5;
- //状态启用禁用
- /**
- * 禁用
- */
- public static final Integer STATE_DISABLE = 0;
- /**
- * 启用
- */
- public static final Integer STATE_ENABLE = 1;
- //表单类型
- /**
- * 自定义表单
- */
- public static final Integer FORM_TYPE_DEV = 1;
- /**
- * 系统表单
- */
- public static final Integer FORM_TYPE_SYS = 2;
- /**
- * 默认分类编码encode
- */
- public static final String DEFAULT_CATEGATY_ENCODE = "default";
- }
|