/* Navicat MySQL Data Transfer Source Server : company Source Server Version : 50720 Source Host : localhost:3306 Source Database : evaluation Target Server Type : MYSQL Target Server Version : 50720 File Encoding : 65001 Date: 2019-12-10 09:36:39 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `admin` -- ---------------------------- DROP TABLE IF EXISTS `admin`; CREATE TABLE `admin` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `password` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of admin -- ---------------------------- INSERT INTO `admin` VALUES ('1', 'admin', 'admin123456'); -- ---------------------------- -- Table structure for `evaluation` -- ---------------------------- DROP TABLE IF EXISTS `evaluation`; CREATE TABLE `evaluation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `station` text NOT NULL, `date` text NOT NULL, `excellent` int(11) NOT NULL, `good` int(11) NOT NULL, `ordinary` int(11) NOT NULL, `bad` int(11) NOT NULL, `abandoned` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of evaluation -- ---------------------------- -- ---------------------------- -- Table structure for `record` -- ---------------------------- DROP TABLE IF EXISTS `record`; CREATE TABLE `record` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user` text NOT NULL, `type` text NOT NULL, `value` text NOT NULL, `ip` text NOT NULL, `time` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of record -- ---------------------------- INSERT INTO `record` VALUES ('1', 'admin', 'login', '', '127.0.0.1', '2019-12-10 08:40:03'); -- ---------------------------- -- Table structure for `station` -- ---------------------------- DROP TABLE IF EXISTS `station`; CREATE TABLE `station` ( `id` text NOT NULL, `name` text NOT NULL, `disable` int(11) NOT NULL DEFAULT '0', `active` text, PRIMARY KEY (`id`(8)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of station -- ----------------------------