+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_ry_sys_dict_type:/tablelist/okayapi_ry_sys_dict_type.html


-- MySQL Table okayapi_ry_sys_dict_type
-- From: OkayAPI.com
CREATE TABLE `okayapi_ry_sys_dict_type` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `dict_id` bigint(20) NULL COMMENT '字典主键',
    `dict_name` varchar(100) NULL COMMENT '字典名称',
    `dict_type` varchar(100) NULL COMMENT '字典类型',
    `okayapi_ry_sys_dict_type_status` char(1) NULL DEFAULT '0' COMMENT '状态(0正常 1停用)',
    `create_by` varchar(64) NULL COMMENT '创建者',
    `create_time` datetime NULL COMMENT '创建时间',
    `update_by` varchar(64) NULL COMMENT '更新者',
    `remark` varchar(500) NULL COMMENT '备注',
    KEY `dict_id` (`dict_id`),
    KEY `dict_name` (`dict_name`),
    KEY `dict_type` (`dict_type`),
    KEY `okayapi_ry_sys_dict_type_status` (`okayapi_ry_sys_dict_type_status`),
    KEY `create_by` (`create_by`),
    KEY `create_time` (`create_time`),
    KEY `update_by` (`update_by`),
    KEY `remark` (`remark`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'RuoYi后台管理系统-字典类型表';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-8 of 8 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
dict_idbigint(20)字典主键
dict_namevarchar(100)字典名称
dict_typevarchar(100)字典类型Unique Index
okayapi_ry_sys_dict_type_statuschar(1)0状态(0正常 1停用)0
create_byvarchar(64)创建者
create_timedatetime创建时间
update_byvarchar(64)更新者
remarkvarchar(500)备注

Guess You Like

MySQL Table Design okayapi_ry_sys_dept

MySQL Table Design okayapi_ry_sys_user

MySQL Table Design okayapi_ry_sys_post

MySQL Table Design okayapi_ry_sys_role

MySQL Table Design okayapi_ry_sys_menu

MySQL Table Design okayapi_ry_sys_user_role

MySQL Table Design okayapi_ry_sys_role_menu

MySQL Table Design okayapi_ry_sys_role_dept

MySQL Table Design okayapi_ry_sys_user_post

MySQL Table Design okayapi_ry_sys_oper_log

MySQL Table Design okayapi_ry_sys_dict_data

MySQL Table Design okayapi_ry_sys_config

MySQL Table Design okayapi_ry_sys_logininfor

MySQL Table Design okayapi_ry_sys_user_online

MySQL Table Design okayapi_ry_sys_job

MySQL Table Design okayapi_ry_sys_job_log

MySQL Table Design okayapi_ry_sys_notice

MySQL Table Design okayapi_ry_gen_table

MySQL Table Design okayapi_ry_gen_table_column

TOP ↑