| | |
| | | /** 上级菜单名称字段 */
|
| | | public static final String PARENT_MENU_NAME = "parentMenuName";
|
| | |
|
| | | /** 生成详情页开关 */
|
| | | public static final String GEN_VIEW = "genView";
|
| | |
|
| | | /** 数据库字符串类型 */
|
| | | public static final String[] COLUMNTYPE_STR = { "char", "varchar", "nvarchar", "varchar2" };
|
| | |
|
| | |
| | |
|
| | | /** 数据库数字类型 */
|
| | | public static final String[] COLUMNTYPE_NUMBER = { "tinyint", "smallint", "mediumint", "int", "number", "integer",
|
| | | "bigint", "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 QUERY_LIKE = "LIKE";
|
| | |
|
| | | /** 相等查询 */
|
| | | public static final String QUERY_EQ = "EQ";
|
| | |
|
| | | /** 需要 */
|
| | | public static final String REQUIRE = "1";
|
| | | }
|