diff --git a/docs/databases/table_create_report-inventory.sql b/docs/databases/table_create_report-inventory.sql index 2fa68038..2e0d6270 100644 --- a/docs/databases/table_create_report-inventory.sql +++ b/docs/databases/table_create_report-inventory.sql @@ -36,6 +36,7 @@ CREATE TABLE `report_inventory_day_store` ( `storeCode` VARCHAR(100) DEFAULT NULL COMMENT '门店编号', `storeCodeName` VARCHAR(100) DEFAULT NULL COMMENT '[门店编号]门店名称', `productCountNumber` int(11) DEFAULT 0 COMMENT '商品数量', + `typeNumber` int(0) NULL DEFAULT NULL COMMENT '商品品种数量', `productAmount` DOUBLE(12,2) DEFAULT 0 COMMENT '货值', `countAmount` double(12,2) DEFAULT NULL COMMENT '合计货值', `countProductNumber` bigint(11) DEFAULT 0 COMMENT '合计品种数量', @@ -58,6 +59,7 @@ CREATE TABLE `report_inventory_day_tobacco_store` ( `storeCode` VARCHAR(100) DEFAULT NULL COMMENT '门店编号', `storeCodeName` VARCHAR(100) DEFAULT NULL COMMENT '[门店编号]门店名称', `productCountNumber` int(11) DEFAULT 0 COMMENT '品种数量', + `typeNumber` int(0) NULL DEFAULT NULL COMMENT '商品品种数量', `productAmount` DOUBLE(12,2) DEFAULT 0 COMMENT '货值', `countAmount` double(12,2) DEFAULT NULL COMMENT '合计货值', `countProductNumber` bigint(11) DEFAULT 0 COMMENT '合计品种数量',