+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_vhr_department:/tablelist/okayapi_vhr_department.html


-- MySQL Table okayapi_vhr_department
-- From: OkayAPI.com
CREATE TABLE `okayapi_vhr_department` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `name` varchar(32) NULL COMMENT '部门名称',
    `parentId` int(11) NULL COMMENT '',
    `depPath` varchar(255) NULL COMMENT '',
    `enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
    `isParent` tinyint(1) NULL DEFAULT '0' COMMENT '',
    KEY `name` (`name`),
    KEY `parentId` (`parentId`),
    KEY `depPath` (`depPath`),
    KEY `enabled` (`enabled`),
    KEY `isParent` (`isParent`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '人力资源-部门';

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


MySQL database table structure design

Displaying 1-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
namevarchar(32)部门名称
parentIdint(11)
depPathvarchar(255)
enabledtinyint(1)11
isParenttinyint(1)00

Guess You Like

MySQL Table Design okayapi_vhr_adjustsalary

MySQL Table Design okayapi_vhr_appraise

MySQL Table Design okayapi_vhr_employee

MySQL Table Design okayapi_vhr_employeeec

MySQL Table Design okayapi_vhr_employeeremove

MySQL Table Design okayapi_vhr_employeetrain

MySQL Table Design okayapi_vhr_empsalary

MySQL Table Design okayapi_vhr_hr

MySQL Table Design okayapi_vhr_hr_role

MySQL Table Design okayapi_vhr_joblevel

MySQL Table Design okayapi_vhr_menu

MySQL Table Design okayapi_vhr_menu_role

MySQL Table Design okayapi_vhr_msgcontent

MySQL Table Design okayapi_vhr_nation

MySQL Table Design okayapi_vhr_oplog

MySQL Table Design okayapi_vhr_politicsstatus

MySQL Table Design okayapi_vhr_position

MySQL Table Design okayapi_vhr_role

MySQL Table Design okayapi_vhr_salary

MySQL Table Design okayapi_vhr_sysmsg

TOP ↑