MySQL Create Table SQL
Table Structure: okayapi_moneymanager_billforout:/tablelist/okayapi_moneymanager_billforout.html
-- MySQL Table okayapi_moneymanager_billforout
-- From: OkayAPI.com
CREATE TABLE `okayapi_moneymanager_billforout` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`okayapi_moneymanager_billforout_date` double NULL COMMENT '支付日期',
`okayapi_moneymanager_billforout_event` varchar(255) NULL COMMENT '事项',
`amount` double NULL COMMENT '金额',
`payId` varchar(36) NULL COMMENT '支付人ID',
`okayapi_moneymanager_billforout_status` int(11) NULL COMMENT '状态(0:未支付 1:已支付 2:待审核 3:不通过)',
`recordId` varchar(36) NULL COMMENT '记录人ID',
`createDate` double NULL COMMENT '记录日期',
`remark` varchar(255) NULL COMMENT '备注',
KEY `okayapi_moneymanager_billforout_date` (`okayapi_moneymanager_billforout_date`),
KEY `okayapi_moneymanager_billforout_event` (`okayapi_moneymanager_billforout_event`),
KEY `amount` (`amount`),
KEY `payId` (`payId`),
KEY `okayapi_moneymanager_billforout_status` (`okayapi_moneymanager_billforout_status`),
KEY `recordId` (`recordId`),
KEY `createDate` (`createDate`),
KEY `remark` (`remark`),
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-8 of 8 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
okayapi_moneymanager_billforout_date | double | 是 | 支付日期 | |||
okayapi_moneymanager_billforout_event | varchar(255) | 是 | 事项 | |||
amount | double | 是 | 金额 | |||
payId | varchar(36) | 是 | 支付人ID | |||
okayapi_moneymanager_billforout_status | int(11) | 是 | 状态(0:未支付 1:已支付 2:待审核 3:不通过) | |||
recordId | varchar(36) | 是 | 记录人ID | |||
createDate | double | 是 | 记录日期 | |||
remark | varchar(255) | 是 | 备注 |