This commit is contained in:
xyy
2026-01-24 13:49:39 +08:00
parent b0a2bce1f3
commit 730d42a81d
7 changed files with 598 additions and 11 deletions

40
db/scandata.sql Normal file
View File

@@ -0,0 +1,40 @@
/*
Navicat Premium Data Transfer
Source Server : localhost
Source Server Type : MySQL
Source Server Version : 100302
Source Host : localhost:3306
Source Schema : fullautowaterpressure
Target Server Type : MySQL
Target Server Version : 100302
File Encoding : 65001
Date: 24/01/2026 11:56:00
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for scandata
-- ----------------------------
DROP TABLE IF EXISTS `scandata`;
CREATE TABLE `scandata` (
`Id` int NOT NULL AUTO_INCREMENT,
`barcode` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`diffpressure` decimal(10, 2) NULL DEFAULT NULL,
`temperature` decimal(10, 2) NULL DEFAULT NULL,
`dwelltime` decimal(10, 2) NULL DEFAULT NULL,
`CreateTime` datetime NOT NULL,
PRIMARY KEY (`Id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 21 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of scandata
-- ----------------------------
INSERT INTO `scandata` VALUES (1, '1212121212', 1.00, 122.00, 1.00, '2026-01-24 11:40:52');
INSERT INTO `scandata` VALUES (2, '1212121212', 1.00, 122.00, 1.00, '2026-01-24 11:40:52');
SET FOREIGN_KEY_CHECKS = 1;