53 lines
2.4 KiB
MySQL
53 lines
2.4 KiB
MySQL
|
|
/*
|
||
|
|
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: 07/01/2026 13:44:43
|
||
|
|
*/
|
||
|
|
|
||
|
|
SET NAMES utf8mb4;
|
||
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
|
|
||
|
|
-- ----------------------------
|
||
|
|
-- Table structure for normaltemperature
|
||
|
|
-- ----------------------------
|
||
|
|
DROP TABLE IF EXISTS `normaltemperature`;
|
||
|
|
CREATE TABLE `normaltemperature` (
|
||
|
|
`Id` int NOT NULL AUTO_INCREMENT,
|
||
|
|
`barcode` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
|
|
`temperature` decimal(10, 2) NULL DEFAULT NULL,
|
||
|
|
`startpressure` decimal(10, 2) NULL DEFAULT NULL,
|
||
|
|
`dwelltime` decimal(10, 2) NULL DEFAULT NULL,
|
||
|
|
`diffpressure` decimal(10, 2) NULL DEFAULT NULL,
|
||
|
|
`endpressure` decimal(10, 2) NULL DEFAULT NULL,
|
||
|
|
`CreateTime` datetime NOT NULL,
|
||
|
|
`type` int NOT NULL,
|
||
|
|
PRIMARY KEY (`Id`) USING BTREE
|
||
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
||
|
|
|
||
|
|
-- ----------------------------
|
||
|
|
-- Records of normaltemperature
|
||
|
|
-- ----------------------------
|
||
|
|
INSERT INTO `normaltemperature` VALUES (1, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-04 20:41:52', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (2, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 09:38:00', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (3, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 09:42:21', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (4, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 10:00:03', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (5, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 10:05:09', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (6, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 10:06:13', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (7, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 10:06:45', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (8, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 10:12:52', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (9, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 10:37:02', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (10, '', 0.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 11:17:36', 0);
|
||
|
|
INSERT INTO `normaltemperature` VALUES (11, '', 4020.00, 0.00, 0.00, 0.00, 0.00, '2026-01-07 11:49:17', 0);
|
||
|
|
|
||
|
|
SET FOREIGN_KEY_CHECKS = 1;
|