+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_72crm_oa_examine:/tablelist/okayapi_72crm_oa_examine.html


-- MySQL Table okayapi_72crm_oa_examine
-- From: OkayAPI.com
CREATE TABLE `okayapi_72crm_oa_examine` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `examine_id` int(11) NULL COMMENT '',
    `category_id` int(11) NULL DEFAULT '1' COMMENT '审批类型',
    `content` varchar(500) NULL COMMENT '内容',
    `remark` varchar(500) NULL COMMENT '备注',
    `type_id` varchar(32) NULL COMMENT '请假类型',
    `money` decimal(18,2) NULL COMMENT '差旅、报销总金额',
    `start_time` datetime NULL COMMENT '开始时间',
    `end_time` datetime NULL COMMENT '结束时间',
    `duration` decimal(4,1) NULL COMMENT '时长',
    `create_user_id` bigint(20) NULL COMMENT '创建人ID',
    `create_time` datetime NULL COMMENT '创建时间',
    `batch_id` varchar(32) NULL COMMENT '附件批次id',
    KEY `examine_id` (`examine_id`),
    KEY `category_id` (`category_id`),
    KEY `content` (`content`),
    KEY `remark` (`remark`),
    KEY `type_id` (`type_id`),
    KEY `money` (`money`),
    KEY `start_time` (`start_time`),
    KEY `end_time` (`end_time`),
    KEY `duration` (`duration`),
    KEY `create_user_id` (`create_user_id`),
    KEY `create_time` (`create_time`),
    KEY `batch_id` (`batch_id`),
    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-12 of 12 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
examine_idint(11)
category_idint(11)1审批类型1
contentvarchar(500)内容
remarkvarchar(500)备注
type_idvarchar(32)请假类型
moneydecimal(18,2)差旅、报销总金额
start_timedatetime开始时间
end_timedatetime结束时间
durationdecimal(4,1)时长
create_user_idbigint(20)创建人ID
create_timedatetime创建时间
batch_idvarchar(32)附件批次id

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 ↑