+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_moneymanager_billforin:/tablelist/okayapi_moneymanager_billforin.html


-- MySQL Table okayapi_moneymanager_billforin
-- From: OkayAPI.com
CREATE TABLE `okayapi_moneymanager_billforin` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `recordId` varchar(36) NULL COMMENT '记录人ID',
    `createDate` double NULL COMMENT '记录日期',
    `remark` varchar(255) NULL COMMENT '备注',
    `okayapi_moneymanager_billforin_date` double NULL COMMENT '入账日期',
    `amount` double NULL COMMENT '金额',
    `fromId` varchar(36) NULL COMMENT '经手人ID',
    `toId` varchar(36) NULL COMMENT '接受人ID',
    KEY `recordId` (`recordId`),
    KEY `createDate` (`createDate`),
    KEY `remark` (`remark`),
    KEY `okayapi_moneymanager_billforin_date` (`okayapi_moneymanager_billforin_date`),
    KEY `amount` (`amount`),
    KEY `fromId` (`fromId`),
    KEY `toId` (`toId`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'mm财务管理-进账';

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


MySQL database table structure design

Displaying 1-7 of 7 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
recordIdvarchar(36)记录人ID
createDatedouble记录日期
remarkvarchar(255)备注
okayapi_moneymanager_billforin_datedouble入账日期
amountdouble金额
fromIdvarchar(36)经手人ID
toIdvarchar(36)接受人ID

Guess You Like

MySQL Table Design okayapi_f_base_component_resource

MySQL Table Design okayapi_f_base_data_control

MySQL Table Design okayapi_f_base_dictionary

MySQL Table Design okayapi_f_base_log_info

MySQL Table Design okayapi_f_base_module

MySQL Table Design okayapi_f_base_organization

MySQL Table Design okayapi_f_base_organization_role

MySQL Table Design okayapi_f_base_permission

MySQL Table Design okayapi_f_base_role

MySQL Table Design okayapi_f_base_role_permission

MySQL Table Design okayapi_f_base_role_permission_data_control

MySQL Table Design okayapi_f_base_user

MySQL Table Design okayapi_f_base_user_role

MySQL Table Design okayapi_f_sample_product

MySQL Table Design okayapi_f_sample_task

MySQL Table Design okayapi_moneymanager_billforout

MySQL Table Design okayapi_moneymanager_menu

MySQL Table Design okayapi_moneymanager_message

MySQL Table Design okayapi_moneymanager_page

MySQL Table Design okayapi_moneymanager_permission

TOP ↑