+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_admin_examine_record:/tablelist/okayapi_72crm_admin_examine_record.html


-- MySQL Table okayapi_72crm_admin_examine_record
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_admin_examine_record` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `record_id` int(11) NULL COMMENT '审核记录ID',
    `examine_id` int(11) NULL COMMENT '审批ID',
    `examine_step_id` bigint(20) NULL COMMENT '当前进行的审批步骤ID',
    `examine_status` int(1) NULL COMMENT '审核状态 0 未审核 1 审核通过 2 审核拒绝 3 审核中 4 已撤回',
    `create_user` bigint(20) NULL COMMENT '创建人',
    `create_time` datetime NULL COMMENT '创建时间',
    `remarks` varchar(255) NULL COMMENT '审核备注',
    KEY `record_id` (`record_id`),
    KEY `examine_id` (`examine_id`),
    KEY `examine_step_id` (`examine_step_id`),
    KEY `examine_status` (`examine_status`),
    KEY `create_user` (`create_user`),
    KEY `create_time` (`create_time`),
    KEY `remarks` (`remarks`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-审核记录表';

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


MySQL database table structure design

Displaying 1-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
record_idint(11)审核记录ID
examine_idint(11)审批ID
examine_step_idbigint(20)当前进行的审批步骤ID
examine_statusint(1)审核状态 0 未审核 1 审核通过 2 审核拒绝 3 审核中 4 已撤回
create_userbigint(20)创建人
create_timedatetime创建时间
remarksvarchar(255)审核备注

Guess You Like

MySQL Table Design okayapi_72crm_admin_config

MySQL Table Design okayapi_72crm_admin_dept

MySQL Table Design okayapi_72crm_admin_examine

MySQL Table Design okayapi_72crm_admin_examine_log

MySQL Table Design okayapi_72crm_admin_examine_step

MySQL Table Design okayapi_72crm_admin_field_sort

MySQL Table Design okayapi_72crm_admin_fieldv

MySQL Table Design okayapi_72crm_admin_file

MySQL Table Design okayapi_72crm_admin_menu

MySQL Table Design okayapi_72crm_admin_message

MySQL Table Design okayapi_72crm_admin_record

MySQL Table Design okayapi_72crm_admin_role

MySQL Table Design okayapi_72crm_admin_role_menu

MySQL Table Design okayapi_72crm_admin_scene

MySQL Table Design okayapi_72crm_admin_scene_default

MySQL Table Design okayapi_72crm_admin_user

MySQL Table Design okayapi_72crm_admin_user_role

MySQL Table Design okayapi_72crm_crm_achievement

MySQL Table Design okayapi_72crm_crm_action_record

MySQL Table Design okayapi_72crm_crm_area

TOP ↑