MySQL Create Table SQL
Table Structure: okayapi_jsh_depotitem:/tablelist/okayapi_jsh_depotitem.html
-- MySQL Table okayapi_jsh_depotitem
-- From: OkayAPI.com
CREATE TABLE `okayapi_jsh_depotitem` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`Id` bigint(20) NULL COMMENT '主键',
`HeaderId` bigint(20) NULL COMMENT '表头Id',
`MaterialId` bigint(20) NULL COMMENT '材料Id',
`MUnit` varchar(20) NULL COMMENT '商品计量单位',
`OperNumber` decimal(24,6) NULL COMMENT '数量',
`BasicNumber` decimal(24,6) NULL COMMENT '基础数量,如kg、瓶',
`UnitPrice` decimal(24,6) NULL COMMENT '单价',
`TaxUnitPrice` decimal(24,6) NULL COMMENT '含税单价',
`AllPrice` decimal(24,6) NULL COMMENT '金额',
`Remark` varchar(200) NULL COMMENT '描述',
`Img` varchar(50) NULL COMMENT '图片',
`Incidentals` decimal(24,6) NULL COMMENT '运杂费',
`DepotId` bigint(20) NULL COMMENT '仓库ID(库存是统计出来的)',
`AnotherDepotId` bigint(20) NULL COMMENT '调拨时,对方仓库Id',
`TaxRate` decimal(24,6) NULL COMMENT '税率',
`TaxMoney` decimal(24,6) NULL COMMENT '税额',
`TaxLastMoney` decimal(24,6) NULL COMMENT '价税合计',
`OtherField1` varchar(50) NULL COMMENT '自定义字段1-品名',
`OtherField2` varchar(50) NULL COMMENT '自定义字段2-型号',
`OtherField3` varchar(50) NULL COMMENT '自定义字段3-制造商',
`OtherField4` varchar(50) NULL COMMENT '自定义字段4',
`OtherField5` varchar(50) NULL COMMENT '自定义字段5',
`MType` varchar(20) NULL COMMENT '商品类型',
`tenant_id` bigint(20) NULL COMMENT '租户id',
`delete_Flag` varchar(1) NULL DEFAULT '0' COMMENT '删除标记,0未删除,1删除',
KEY `Id` (`Id`),
KEY `HeaderId` (`HeaderId`),
KEY `MaterialId` (`MaterialId`),
KEY `MUnit` (`MUnit`),
KEY `OperNumber` (`OperNumber`),
KEY `BasicNumber` (`BasicNumber`),
KEY `UnitPrice` (`UnitPrice`),
KEY `TaxUnitPrice` (`TaxUnitPrice`),
KEY `AllPrice` (`AllPrice`),
KEY `Remark` (`Remark`),
KEY `Img` (`Img`),
KEY `Incidentals` (`Incidentals`),
KEY `DepotId` (`DepotId`),
KEY `AnotherDepotId` (`AnotherDepotId`),
KEY `TaxRate` (`TaxRate`),
KEY `TaxMoney` (`TaxMoney`),
KEY `TaxLastMoney` (`TaxLastMoney`),
KEY `OtherField1` (`OtherField1`),
KEY `OtherField2` (`OtherField2`),
KEY `OtherField3` (`OtherField3`),
KEY `OtherField4` (`OtherField4`),
KEY `OtherField5` (`OtherField5`),
KEY `MType` (`MType`),
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-25 of 25 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
Id | bigint(20) | 否 | 主键 | |||
HeaderId | bigint(20) | 否 | 表头Id | Normal Index | ||
MaterialId | bigint(20) | 否 | 材料Id | Normal Index | ||
MUnit | varchar(20) | 是 | 商品计量单位 | |||
OperNumber | decimal(24,6) | 是 | 数量 | |||
BasicNumber | decimal(24,6) | 是 | 基础数量,如kg、瓶 | |||
UnitPrice | decimal(24,6) | 是 | 单价 | |||
TaxUnitPrice | decimal(24,6) | 是 | 含税单价 | |||
AllPrice | decimal(24,6) | 是 | 金额 | |||
Remark | varchar(200) | 是 | 描述 | |||
Img | varchar(50) | 是 | 图片 | |||
Incidentals | decimal(24,6) | 是 | 运杂费 | |||
DepotId | bigint(20) | 是 | 仓库ID(库存是统计出来的) | Normal Index | ||
AnotherDepotId | bigint(20) | 是 | 调拨时,对方仓库Id | Normal Index | ||
TaxRate | decimal(24,6) | 是 | 税率 | |||
TaxMoney | decimal(24,6) | 是 | 税额 | |||
TaxLastMoney | decimal(24,6) | 是 | 价税合计 | |||
OtherField1 | varchar(50) | 是 | 自定义字段1-品名 | |||
OtherField2 | varchar(50) | 是 | 自定义字段2-型号 | |||
OtherField3 | varchar(50) | 是 | 自定义字段3-制造商 | |||
OtherField4 | varchar(50) | 是 | 自定义字段4 | |||
OtherField5 | varchar(50) | 是 | 自定义字段5 | |||
MType | varchar(20) | 是 | 商品类型 | |||
tenant_id | bigint(20) | 是 | 租户id | |||
delete_Flag | varchar(1) | 0 | 是 | 删除标记,0未删除,1删除 | 0 |