+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_opms_pms_checkworks:/tablelist/okayapi_opms_pms_checkworks.html


-- MySQL Table okayapi_opms_pms_checkworks
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_checkworks` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `userid` bigint(20) NULL COMMENT '',
    `clock` varchar(8) NULL COMMENT '打卡时间',
    `okayapi_opms_pms_checkworks_type` tinyint(1) NULL COMMENT '1正常2迟到3早退4加班',
    `ip` varchar(20) NULL COMMENT '',
    `created` int(10) NULL COMMENT '时间',
    KEY `userid` (`userid`),
    KEY `clock` (`clock`),
    KEY `okayapi_opms_pms_checkworks_type` (`okayapi_opms_pms_checkworks_type`),
    KEY `ip` (`ip`),
    KEY `created` (`created`),
    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-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
useridbigint(20)
clockvarchar(8)打卡时间
okayapi_opms_pms_checkworks_typetinyint(1)1正常2迟到3早退4加班
ipvarchar(20)
createdint(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_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

MySQL Table Design okayapi_opms_pms_messages

TOP ↑