You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
1.6 KiB

DROP TABLE IF EXISTS `report_set`;
CREATE TABLE `report_set`
(
`id` int(32) NOT NULL AUTO_INCREMENT COMMENT 'id',
`sid` varchar(64) NOT NULL COMMENT 'sid',
`lockVersion` int(32) DEFAULT '0' COMMENT '版本锁',
`createTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`modifyTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
`isEnable` int(32) DEFAULT '1' COMMENT '是否可用:1可用,0不可用',
`state` int(32) DEFAULT '1' COMMENT '状态',
`isDelete` int(32) DEFAULT '0' COMMENT '是否删除:0未删除,1已删除',
`remarks` varchar(255) DEFAULT NULL COMMENT '备注',
`createBySid` varchar(64) DEFAULT NULL COMMENT '创建人sid',
`updateBySid` varchar(64) DEFAULT NULL COMMENT '修改人sid',
`stock` int(32) DEFAULT NULL COMMENT '库存',
`pcOrder` int(32) DEFAULT NULL COMMENT '排产',
`reserveCar` int(32) DEFAULT NULL COMMENT '订车',
`sales` int(32) DEFAULT NULL COMMENT '销售',
`deliver` int(32) DEFAULT NULL COMMENT '交付',
`buyout` int(32) DEFAULT NULL COMMENT '买断',
`outbound` int(32) DEFAULT NULL COMMENT '欠款出库',
`loanDis` int(32) DEFAULT NULL COMMENT '金融未放款',
PRIMARY KEY (`id`),
KEY `id` (`id`)
) ENGINE = INNODB
DEFAULT CHARSET = utf8 COMMENT ='统计报表设计折叠';