+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_oa_examine_step:/tablelist/okayapi_72crm_oa_examine_step.html


-- MySQL Table okayapi_72crm_oa_examine_step
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_oa_examine_step` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `step_id` bigint(20) NULL COMMENT '',
    `step_type` int(1) NULL COMMENT '步骤类型1、负责人主管,2、指定用户(任意一人),3、指定用户(多人会签),4、上一级审批人主管',
    `category_id` int(11) NULL COMMENT '审批ID',
    `check_user_id` varchar(500) NULL COMMENT '审批人ID (使用逗号隔开) ,1,2,',
    `step_num` int(2) NULL DEFAULT '1' COMMENT '排序',
    `create_time` datetime NULL COMMENT '创建时间',
    KEY `step_id` (`step_id`),
    KEY `step_type` (`step_type`),
    KEY `category_id` (`category_id`),
    KEY `check_user_id` (`check_user_id`),
    KEY `step_num` (`step_num`),
    KEY `create_time` (`create_time`),
    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-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
step_idbigint(20)
step_typeint(1)步骤类型1、负责人主管,2、指定用户(任意一人),3、指定用户(多人会签),4、上一级审批人主管
category_idint(11)审批ID
check_user_idvarchar(500)审批人ID (使用逗号隔开) ,1,2,
step_numint(2)1排序1
create_timedatetime创建时间

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_record

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

TOP ↑