MySQL数据库表结构设计
第 1-15 条, 共 15 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
subject_code | bigint(20) | 否 | 科目代码 | 普通索引 | ||
initial_debit_balance | decimal(11,2) | 是 | 期初借方金额 | 无索引 | ||
initial_credit_balance | decimal(11,2) | 是 | 期初贷方金额 | 无索引 | ||
period_debit_occur | decimal(11,2) | 是 | 本期借方发生额 | 无索引 | ||
period_credit_occur | decimal(11,2) | 是 | 本期贷方发生额 | 无索引 | ||
year_debit_occur | decimal(11,2) | 是 | 本年借方累计发生额 | 无索引 | ||
year_credit_occur | decimal(11,2) | 是 | 本年贷方累计发生额 | 无索引 | ||
terminal_debit_balance | decimal(11,2) | 是 | 期末借方余额 | 无索引 | ||
terminal_credit_balance | decimal(11,2) | 是 | 期末贷方余额 | 无索引 | ||
book_id | bigint(20) | 否 | 账套id | 无索引 | ||
period_id | bigint(20) | 否 | 无索引 | |||
profit_loss_occur_amount | decimal(11,2) | 是 | 损益类科目实际发生额 | 无索引 | ||
profit_loss_total_occur_amount | decimal(11,2) | 是 | 损益类科目本年累计发生额 | 无索引 | ||
create_time | timestamp | CURRENT_TIMESTAMP | 否 | 无索引 | CURRENT_TIMESTAMP | |
modify_time | timestamp | 2015-01-01 00:00:00 | 否 | 无索引 | 2015-01-01 00:00:00 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:易记账-科目余额表:https://open.yesapi.cn/tablelist/yesapi_yjz_prod_subject_balance.html
-- 数据库大全:易记账-科目余额表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_yjz_prod_subject_balance` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`subject_code` bigint(20) NOT NULL COMMENT '科目代码',
`initial_debit_balance` decimal(11,2) NOT NULL COMMENT '期初借方金额',
`initial_credit_balance` decimal(11,2) NOT NULL COMMENT '期初贷方金额',
`period_debit_occur` decimal(11,2) NOT NULL COMMENT '本期借方发生额',
`period_credit_occur` decimal(11,2) NOT NULL COMMENT '本期贷方发生额',
`year_debit_occur` decimal(11,2) NOT NULL COMMENT '本年借方累计发生额',
`year_credit_occur` decimal(11,2) NOT NULL COMMENT '本年贷方累计发生额',
`terminal_debit_balance` decimal(11,2) NOT NULL COMMENT '期末借方余额',
`terminal_credit_balance` decimal(11,2) NOT NULL COMMENT '期末贷方余额',
`book_id` bigint(20) NOT NULL COMMENT '账套id',
`period_id` bigint(20) NOT NULL COMMENT '',
`profit_loss_occur_amount` decimal(11,2) NOT NULL COMMENT '损益类科目实际发生额',
`profit_loss_total_occur_amount` decimal(11,2) NOT NULL COMMENT '损益类科目本年累计发生额',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '',
`modify_time` timestamp NOT NULL DEFAULT '2015-01-01 00:00:00' COMMENT '',
KEY `subject_code` (`subject_code`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '易记账-科目余额表';
复制后,到数据库执行,即可创建此数据库表。