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.
delivery/express_management.sql

50 lines
1.4 KiB

/*
Navicat MySQL Data Transfer
Source Server : cxy
Source Server Version : 80200
Source Host : localhost:3306
Source Database : express_management
Target Server Type : MYSQL
Target Server Version : 80200
File Encoding : 65001
Date: 2024-11-23 21:42:21
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for express_info
-- ----------------------------
DROP TABLE IF EXISTS `express_info`;
CREATE TABLE `express_info` (
`id` int NOT NULL,
`expressId` varchar(50) NOT NULL,
`sename` varchar(20) NOT NULL,
`sephone` varchar(15) NOT NULL,
`seaddress` varchar(100) NOT NULL,
`rename` varchar(20) NOT NULL,
`rephone` varchar(15) NOT NULL,
`readdress` varchar(100) NOT NULL,
`issigned` tinyint(1) NOT NULL,
`signtime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(20) NOT NULL,
`password` varchar(32) NOT NULL,
`nickname` varchar(10) DEFAULT NULL,
`isCourier` tinyint(1) NOT NULL DEFAULT '0',
`create_time` datetime DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;