MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
cgform_id | varchar(32) | 是 | online表id | 无索引 | ||
yesapi_jeecgboot_onl_auth_page_code | varchar(255) | 是 | 字段名/按钮编码 | 无索引 | ||
yesapi_jeecgboot_onl_auth_page_type | int(1) | 是 | 1字段 2按钮 | 无索引 | ||
control | int(1) | 是 | 3可编辑 5可见(仅支持两种状态值3,5) | 无索引 | ||
yesapi_jeecgboot_onl_auth_page_page | int(1) | 是 | 3列表 5表单(仅支持两种状态值3,5) | 无索引 | ||
yesapi_jeecgboot_onl_auth_page_status | int(1) | 是 | 1有效 0无效 | 无索引 | ||
create_time | datetime | 是 | 创建时间 | 无索引 | ||
create_by | varchar(32) | 是 | 创建人 | 无索引 | ||
update_by | varchar(50) | 是 | 更新人 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:低代码开发平台-Online授权:https://open.yesapi.cn/tablelist/yesapi_jeecgboot_onl_auth_page.html
-- 数据库大全:低代码开发平台-Online授权
-- 来源:YesApi.cn
CREATE TABLE `yesapi_jeecgboot_onl_auth_page` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cgform_id` varchar(32) NULL COMMENT 'online表id',
`yesapi_jeecgboot_onl_auth_page_code` varchar(255) NULL COMMENT '字段名/按钮编码',
`yesapi_jeecgboot_onl_auth_page_type` int(1) NULL COMMENT '1字段 2按钮',
`control` int(1) NULL COMMENT '3可编辑 5可见(仅支持两种状态值3,5)',
`yesapi_jeecgboot_onl_auth_page_page` int(1) NULL COMMENT '3列表 5表单(仅支持两种状态值3,5)',
`yesapi_jeecgboot_onl_auth_page_status` int(1) NULL COMMENT '1有效 0无效',
`create_time` datetime NULL COMMENT '创建时间',
`create_by` varchar(32) NULL COMMENT '创建人',
`update_by` varchar(50) NULL COMMENT '更新人',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '低代码开发平台-Online授权';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢

