easyink/sql/init/qy_fpxx.sql

12 lines
595 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

DROP TABLE IF EXISTS `qy_fpxx`;
CREATE TABLE `qy_fpxx`
(
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键id',
`qy_id` varchar(50) default NULL COMMENT '企业id',
`month` date COMMENT '月份',
`total_fp` int DEFAULT NULL COMMENT '总票数',
`total_je` float DEFAULT NULL COMMENT '总金额',
`is_xx` varchar(50) DEFAULT NULL COMMENT '是否销项0进项1销项',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 103 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '企业发票信息' ROW_FORMAT = Dynamic;