From 47bf89209349e9c9bff02f087ed19e15239d48e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=BF=9B=E6=89=8D?= Date: Fri, 15 Sep 2023 16:34:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=9F=A5=E8=AF=A2=E6=8A=A5?= =?UTF-8?q?=E5=91=8A=E5=8D=95=E4=BA=BA=E6=95=B0=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/ report.sql | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 sql/ report.sql diff --git a/sql/ report.sql b/sql/ report.sql new file mode 100644 index 0000000..b0ebf5b --- /dev/null +++ b/sql/ report.sql @@ -0,0 +1,33 @@ +/* + Navicat Premium Data Transfer + + Source Server : conpany 102 + Source Server Type : MySQL + Source Server Version : 80020 (8.0.20) + Source Host : 192.168.12.102:3306 + Source Schema : wx + + Target Server Type : MySQL + Target Server Version : 80020 (8.0.20) + File Encoding : 65001 + + Date: 15/09/2023 15:20:54 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for report +-- ---------------------------- +DROP TABLE IF EXISTS `report`; +CREATE TABLE `report` ( + `ReportId` int NOT NULL AUTO_INCREMENT, + `UpdateTime` date DEFAULT NULL, + `ReportCount` int DEFAULT NULL, + `ReportType` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL, + `Remark` varchar(500) DEFAULT NULL, + PRIMARY KEY (`ReportId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +SET FOREIGN_KEY_CHECKS = 1;