+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jsh_account:/tablelist/okayapi_jsh_account.html


-- MySQL Table okayapi_jsh_account
-- From: OkayAPI.com
CREATE TABLE `okayapi_jsh_account` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `Id` bigint(20) NULL COMMENT '主键',
    `Name` varchar(50) NULL COMMENT '名称',
    `SerialNo` varchar(50) NULL COMMENT '编号',
    `InitialAmount` decimal(24,6) NULL COMMENT '期初金额',
    `CurrentAmount` decimal(24,6) NULL COMMENT '当前余额',
    `Remark` varchar(100) NULL COMMENT '备注',
    `IsDefault` bit(1) NULL COMMENT '是否默认',
    `tenant_id` bigint(20) NULL COMMENT '租户id',
    `delete_Flag` varchar(1) NULL DEFAULT '0' COMMENT '删除标记,0未删除,1删除',
    KEY `Id` (`Id`),
    KEY `Name` (`Name`),
    KEY `SerialNo` (`SerialNo`),
    KEY `InitialAmount` (`InitialAmount`),
    KEY `CurrentAmount` (`CurrentAmount`),
    KEY `Remark` (`Remark`),
    KEY `IsDefault` (`IsDefault`),
    KEY `tenant_id` (`tenant_id`),
    KEY `delete_Flag` (`delete_Flag`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
Idbigint(20)主键
Namevarchar(50)名称
SerialNovarchar(50)编号
InitialAmountdecimal(24,6)期初金额
CurrentAmountdecimal(24,6)当前余额
Remarkvarchar(100)备注
IsDefaultbit(1)是否默认
tenant_idbigint(20)租户id
delete_Flagvarchar(1)0删除标记,0未删除,1删除0

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 ↑