+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_ry_sys_notice:/tablelist/okayapi_ry_sys_notice.html


-- MySQL Table okayapi_ry_sys_notice
-- From: OkayAPI.com
CREATE TABLE `okayapi_ry_sys_notice` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `notice_id` int(4) NULL COMMENT '公告ID',
    `notice_title` varchar(50) NULL COMMENT '公告标题',
    `notice_type` char(1) NULL COMMENT '公告类型(1通知 2公告)',
    `notice_content` varchar(2000) NULL COMMENT '公告内容',
    `okayapi_ry_sys_notice_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(255) NULL COMMENT '备注',
    KEY `notice_id` (`notice_id`),
    KEY `notice_title` (`notice_title`),
    KEY `notice_type` (`notice_type`),
    KEY `notice_content` (`notice_content`),
    KEY `okayapi_ry_sys_notice_status` (`okayapi_ry_sys_notice_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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
notice_idint(4)公告ID
notice_titlevarchar(50)公告标题
notice_typechar(1)公告类型(1通知 2公告)
notice_contentvarchar(2000)公告内容
okayapi_ry_sys_notice_statuschar(1)0公告状态(0正常 1关闭)0
create_byvarchar(64)创建者
create_timedatetime创建时间
update_byvarchar(64)更新者
remarkvarchar(255)备注

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_type

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_gen_table

MySQL Table Design okayapi_ry_gen_table_column

TOP ↑