+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jsh_log:/tablelist/okayapi_jsh_log.html


-- MySQL Table okayapi_jsh_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_jsh_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `userID` bigint(20) NULL COMMENT '操作用户ID',
    `operation` varchar(500) NULL COMMENT '操作模块名称',
    `clientIP` varchar(50) NULL COMMENT '客户端IP',
    `createtime` datetime NULL COMMENT '创建时间',
    `status` tinyint(4) NULL COMMENT '操作状态 0==成功,1==失败',
    `contentdetails` varchar(1000) NULL COMMENT '操作详情',
    `remark` varchar(500) NULL COMMENT '备注信息',
    `tenant_id` bigint(20) NULL COMMENT '租户id',
    KEY `userID` (`userID`),
    KEY `operation` (`operation`),
    KEY `clientIP` (`clientIP`),
    KEY `createtime` (`createtime`),
    KEY `status` (`status`),
    KEY `contentdetails` (`contentdetails`),
    KEY `remark` (`remark`),
    KEY `tenant_id` (`tenant_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'ERP进销存-操作日志';

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


MySQL database table structure design

Displaying 1-8 of 8 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
userIDbigint(20)操作用户IDNormal Index
operationvarchar(500)操作模块名称
clientIPvarchar(50)客户端IP
createtimedatetime创建时间
statustinyint(4)操作状态 0==成功,1==失败
contentdetailsvarchar(1000)操作详情
remarkvarchar(500)备注信息
tenant_idbigint(20)租户id

Guess You Like

MySQL Table Design okayapi_smpss_admin

MySQL Table Design okayapi_smpss_category

MySQL Table Design okayapi_smpss_goods

MySQL Table Design okayapi_smpss_group

MySQL Table Design okayapi_smpss_log

MySQL Table Design okayapi_smpss_mbgroup

MySQL Table Design okayapi_smpss_member

MySQL Table Design okayapi_smpss_purchase

MySQL Table Design okayapi_smpss_region

MySQL Table Design okayapi_smpss_sales

MySQL Table Design okayapi_smpss_system

MySQL Table Design okayapi_smpss_tempsales

MySQL Table Design okayapi_dberp_accounts_receivable

MySQL Table Design okayapi_dberp_accounts_receivable_log

MySQL Table Design okayapi_dberp_admin

MySQL Table Design okayapi_dberp_admin_group

MySQL Table Design okayapi_dberp_app

MySQL Table Design okayapi_dberp_brand

MySQL Table Design okayapi_dberp_customer

MySQL Table Design okayapi_dberp_customer_category

TOP ↑