| | |
| | | /** 树表(增删改查) */
|
| | | public static final String TPL_TREE = "tree";
|
| | |
|
| | | /** 主子表(增删改查) */
|
| | | public static final String TPL_SUB = "sub";
|
| | |
|
| | | /** 树编码字段 */
|
| | | public static final String TREE_CODE = "treeCode";
|
| | |
|
| | |
| | | public static final String PARENT_MENU_NAME = "parentMenuName";
|
| | |
|
| | | /** 数据库字符串类型 */
|
| | | public static final String[] COLUMNTYPE_STR = { "char", "varchar", "nvarchar", "varchar2", "tinytext", "text",
|
| | | "mediumtext", "longtext" };
|
| | | public static final String[] COLUMNTYPE_STR = { "char", "varchar", "nvarchar", "varchar2" };
|
| | |
|
| | | /** 数据库文本类型 */
|
| | | public static final String[] COLUMNTYPE_TEXT = { "tinytext", "text", "mediumtext", "longtext" };
|
| | |
|
| | | /** 数据库时间类型 */
|
| | | public static final String[] COLUMNTYPE_TIME = { "datetime", "time", "date", "timestamp" };
|
| | |
|
| | | /** 数据库数字类型 */
|
| | | public static final String[] COLUMNTYPE_NUMBER = { "tinyint", "smallint", "mediumint", "int", "number", "integer",
|
| | | "bigint", "float", "float", "double", "decimal" };
|
| | | "bit", "bigint", "float", "double", "decimal" };
|
| | |
|
| | | /** 页面不需要编辑字段 */
|
| | | public static final String[] COLUMNNAME_NOT_EDIT = { "id", "create_by", "create_time", "del_flag" };
|
| | |
| | | /** 日期控件 */
|
| | | public static final String HTML_DATETIME = "datetime";
|
| | |
|
| | | /** 图片上传控件 */
|
| | | public static final String HTML_IMAGE_UPLOAD = "imageUpload";
|
| | |
|
| | | /** 文件上传控件 */
|
| | | public static final String HTML_FILE_UPLOAD = "fileUpload";
|
| | |
|
| | | /** 富文本控件 */
|
| | | public static final String HTML_EDITOR = "editor";
|
| | |
|
| | |
| | | /** 模糊查询 */
|
| | | public static final String QUERY_LIKE = "LIKE";
|
| | |
|
| | | /** 相等查询 */
|
| | | public static final String QUERY_EQ = "EQ";
|
| | |
|
| | | /** 需要 */
|
| | | public static final String REQUIRE = "1";
|
| | | }
|