MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
ID | varchar(32) | 否 | id | 无索引 | ||
operationcode | varchar(50) | 是 | 页面控件code | 无索引 | ||
operationicon | varchar(100) | 是 | 图标 | 无索引 | ||
operationname | varchar(50) | 是 | 页面名字 | 无索引 | ||
yesapi_jeewms_t_s_operation_status | smallint(6) | 是 | 状态 | 无索引 | ||
functionid | varchar(32) | 是 | 菜单ID | 普通索引 | ||
iconid | varchar(32) | 是 | 图标ID | 普通索引 | ||
operationtype | smallint(6) | 是 | 规则类型:1/禁用 0/隐藏 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:仓库管理系统-:https://open.yesapi.cn/tablelist/yesapi_jeewms_t_s_operation.html
-- 数据库大全:仓库管理系统-
-- 来源:YesApi.cn
CREATE TABLE `yesapi_jeewms_t_s_operation` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ID` varchar(32) NULL COMMENT 'id',
`operationcode` varchar(50) NULL COMMENT '页面控件code',
`operationicon` varchar(100) NULL COMMENT '图标',
`operationname` varchar(50) NULL COMMENT '页面名字',
`yesapi_jeewms_t_s_operation_status` smallint(6) NULL COMMENT '状态',
`functionid` varchar(32) NULL COMMENT '菜单ID',
`iconid` varchar(32) NULL COMMENT '图标ID',
`operationtype` smallint(6) NULL COMMENT '规则类型:1/禁用 0/隐藏',
KEY `functionid` (`functionid`),
KEY `iconid` (`iconid`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '仓库管理系统-';
复制后,到数据库执行,即可创建此数据库表。