+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_opms_pms_overtimes:/tablelist/okayapi_opms_pms_overtimes.html


-- MySQL Table okayapi_opms_pms_overtimes
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_overtimes` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `userid` bigint(20) NULL COMMENT '请假人',
    `started` int(10) NULL COMMENT '开始时间',
    `ended` int(10) NULL COMMENT '结束时间',
    `longtime` tinyint(4) NULL COMMENT '加班时长',
    `holiday` tinyint(1) NULL COMMENT '节假日1是2否',
    `way` tinyint(1) NULL COMMENT '核算方式1调休,2加班费',
    `reason` varchar(500) NULL COMMENT '原因',
    `result` tinyint(1) NULL COMMENT '1同意2拒绝',
    `okayapi_opms_pms_overtimes_status` tinyint(1) NULL DEFAULT '1' COMMENT '1草稿2正常发布',
    `approverids` varchar(200) NULL COMMENT '审批人串',
    `created` int(10) NULL COMMENT '',
    `okayapi_opms_pms_overtimes_changed` int(10) NULL COMMENT '',
    KEY `userid` (`userid`),
    KEY `started` (`started`),
    KEY `ended` (`ended`),
    KEY `longtime` (`longtime`),
    KEY `holiday` (`holiday`),
    KEY `way` (`way`),
    KEY `reason` (`reason`),
    KEY `result` (`result`),
    KEY `okayapi_opms_pms_overtimes_status` (`okayapi_opms_pms_overtimes_status`),
    KEY `approverids` (`approverids`),
    KEY `created` (`created`),
    KEY `okayapi_opms_pms_overtimes_changed` (`okayapi_opms_pms_overtimes_changed`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-加班表';

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
useridbigint(20)请假人
startedint(10)开始时间
endedint(10)结束时间
longtimetinyint(4)加班时长
holidaytinyint(1)节假日1是2否
waytinyint(1)核算方式1调休,2加班费
reasonvarchar(500)原因
resulttinyint(1)1同意2拒绝
okayapi_opms_pms_overtimes_statustinyint(1)11草稿2正常发布1
approveridsvarchar(200)审批人串
createdint(10)
okayapi_opms_pms_overtimes_changedint(10)

Guess You Like

MySQL Table Design okayapi_opms_pms_albums

MySQL Table Design okayapi_opms_pms_albums_comment

MySQL Table Design okayapi_opms_pms_albums_laud

MySQL Table Design okayapi_opms_pms_businesstrips

MySQL Table Design okayapi_opms_pms_businesstrips_approver

MySQL Table Design okayapi_opms_pms_checkworks

MySQL Table Design okayapi_opms_pms_departs

MySQL Table Design okayapi_opms_pms_expenses

MySQL Table Design okayapi_opms_pms_expenses_approver

MySQL Table Design okayapi_opms_pms_goouts

MySQL Table Design okayapi_opms_pms_goouts_approver

MySQL Table Design okayapi_opms_pms_groups

MySQL Table Design okayapi_opms_pms_groups_permission

MySQL Table Design okayapi_opms_pms_groups_user

MySQL Table Design okayapi_opms_pms_knowledges

MySQL Table Design okayapi_opms_pms_knowledges_comment

MySQL Table Design okayapi_opms_pms_knowledges_laud

MySQL Table Design okayapi_opms_pms_knowledges_sort

MySQL Table Design okayapi_opms_pms_leaves

MySQL Table Design okayapi_opms_pms_leaves_approver

TOP ↑