MySQL数据库表结构设计
第 1-16 条, 共 16 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
subject_code | bigint(20) | 否 | 会计科目编码 暂定总分类:-1 小分类:0 | 无索引 | ||
subject_name | varchar(45) | 否 | 会计科目名称 总分类与小分类填对应名称 | 无索引 | ||
parent_subject_code | bigint(20) | 否 | 父会计科目id | 无索引 | ||
yesapi_yjz_prod_account_subject_level | int(11) | 否 | 暂定总分类:-1 小分类:0 会计科目一:1 会计科目二:2 | 无索引 | ||
tip_info | varchar(20) | 是 | 助记码 | 无索引 | ||
direction | int(11) | 是 | 借方向 :1 贷方向:2 | 无索引 | ||
book_id | bigint(20) | 是 | 账套id | 普通索引 | ||
total_debit | decimal(11,2) | 是 | 累计借方金额 | 无索引 | ||
total_credit | decimal(11,2) | 是 | 累计贷方金额 | 无索引 | ||
initial_left | decimal(11,2) | 是 | 期初余额 | 无索引 | ||
year_occur_amount | decimal(11,2) | 是 | 本年累计损益实际发生额 | 无索引 | ||
end_flag | int(11) | 0 | 是 | 是否结束此次账套标示/期结账 1 结束 0 未结束 | 无索引 | 0 |
base_flag | int(11) | 0 | 是 | 0:基础数据 1:非基础数据 | 无索引 | 0 |
company_id | varchar(45) | 是 | 公司id | 无索引 | ||
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_account_subject.html
-- 数据库大全:易记账-会计科目表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_yjz_prod_account_subject` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`subject_code` bigint(20) NOT NULL COMMENT '会计科目编码
暂定总分类:-1 小分类:0',
`subject_name` varchar(45) NOT NULL COMMENT '会计科目名称
总分类与小分类填对应名称',
`parent_subject_code` bigint(20) NOT NULL COMMENT '父会计科目id',
`yesapi_yjz_prod_account_subject_level` int(11) NOT NULL COMMENT '暂定总分类:-1 小分类:0
会计科目一:1 会计科目二:2',
`tip_info` varchar(20) NOT NULL COMMENT ' 助记码',
`direction` int(11) NOT NULL COMMENT '借方向 :1 贷方向:2',
`book_id` bigint(20) NOT NULL COMMENT '账套id',
`total_debit` decimal(11,2) NOT NULL COMMENT '累计借方金额',
`total_credit` decimal(11,2) NOT NULL COMMENT '累计贷方金额 ',
`initial_left` decimal(11,2) NOT NULL COMMENT '期初余额',
`year_occur_amount` decimal(11,2) NOT NULL COMMENT '本年累计损益实际发生额',
`end_flag` int(11) NOT NULL DEFAULT '0' COMMENT '是否结束此次账套标示/期结账
1 结束 0 未结束',
`base_flag` int(11) NOT NULL DEFAULT '0' COMMENT '0:基础数据 1:非基础数据 ',
`company_id` varchar(45) NOT NULL COMMENT '公司id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`modify_time` timestamp NOT NULL DEFAULT '2015-01-01 00:00:00' COMMENT '修改时间',
KEY `book_id` (`book_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '易记账-会计科目表';
复制后,到数据库执行,即可创建此数据库表。