下载地址:java学生宿舍管理系统项目模板、毕业设计-Web服务器文档类资源-CSDN下载
学生宿舍管理系统,带sql文件、可运行,欢迎下载
/*
Navicat MySQL Data Transfer
Source Server : db2
Source Server Version : 50519
Source Host : localhost:3306
Source Database : sushe
Target Server Type : MYSQL
Target Server Version : 50519
File Encoding : 65001
Date: 2017-12-26 10:04:16
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `admin`
-- ----------------------------
DROP TABLE IF EXISTS `admin`;
CREATE TABLE `admin` (
`Admin_ID` int(11) NOT NULL AUTO_INCREMENT,
`Admin_Username` varchar(20) DEFAULT NULL,
`Admin_Password` varchar(20) DEFAULT NULL,
`Admin_Name` varchar(20) DEFAULT NULL,
`Admin_Sex` varchar(10) DEFAULT NULL,
`Admin_Tel` varchar(20) DEFAULT NULL,
PRIMARY KEY (`Admin_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of admin
-- ----------------------------
INSERT INTO `admin` VALUES ('1', 'java1234', '123', 'admin', '', null);
-- ----------------------------
-- Table structure for `building`
-- ----------------------------
DROP TABLE IF EXISTS `building`;
CREATE TABLE `building` (
`Building_ID` int(11) NOT NULL AUTO_INCREMENT,
`Building_Name` varchar(50) DEFAULT NULL,
`Building_Introduction` varchar(1000) DEFAULT NULL,
PRIMARY KEY (`Building_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of building
-- ----------------------------
INSERT INTO `building` VALUES ('1', '楼宇1', '这个楼宇1');
INSERT INTO `building` VALUES ('2', '楼宇2', '这个楼宇2');
-- ----------------------------
-- Table structure for `domitory`
-- ----------------------------
DROP TABLE IF EXISTS `domitory`;
CREATE TABLE `domitory` (
`Domitory_ID` int(11) NOT NULL AUTO_INCREMENT,
`Domitory_BuildingID` int(11) DEFAULT NULL,
`Domitory_Name` varchar(20) DEFAULT NULL,
`Domitory_Type` varchar(20) DEFAULT NULL,
`Domitory_Number` varchar(20) DEFAULT NULL,
`Domitory_Tel` varchar(20) DEFAULT NULL,
PRIMARY KEY (`Domitory_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of domitory
-- ----------------------------
INSERT INTO `domitory` VALUES ('1', '1', '11', '11', '11', '11');
INSERT INTO `domitory` VALUES ('2', '2', '002', '哈哈', '12', '312');
-- ----------------------------
-- Table structure for `log`
-- ----------------------------
DROP TABLE IF EXISTS `log`;
CREATE TABLE `log` (
`Log_ID` int(11) NOT NULL AUTO_INCREMENT,
`Log_StudentID` int(11) DEFAULT NULL,
`Log_TeacherID` int(11) DEFAULT NULL,
`Log_Date` varchar(50) DEFAULT NULL,
`Log_Remark` varchar(1000) DEFAULT NULL,
PRIMARY KEY (`Log_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of log
-- ----------------------------
INSERT INTO `log` VALUES ('1', '2', '1', '2013-04-10', 'we');
-- ----------------------------
-- Table structure for `out1`
-- ----------------------------
DROP TABLE IF EXISTS `out1`;
CREATE TABLE `out1` (
`Out_ID` int(11) NOT NULL AUTO_INCREMENT,
`Out_StudentID` varchar(11) DEFAULT NULL,
`Out_Date` varchar(50) DEFAULT NULL,
`Out_Remark` varchar(1000) DEFAULT NULL,
PRIMARY KEY (`Out_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of out1
-- ----------------------------
INSERT INTO `out1` VALUES ('1', '2', '2013-4-28', '13');
INSERT INTO `out1` VALUES ('2', '1', '2013-4-28', '搜索');
-- ----------------------------
-- Table structure for `student`
-- ----------------------------
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student` (
`Student_ID` int(11) NOT NULL AUTO_INCREMENT,
`Student_DomitoryID` int(11) DEFAULT NULL,
`Student_Username` varchar(20) DEFAULT NULL,
`Student_Password` varchar(20) DEFAULT NULL,
`Student_Name` varchar(20) DEFAULT NULL,
`Student_Sex` varchar(20) DEFAULT NULL,
`Student_Class` varchar(20) DEFAULT NULL,
`Student_State` varchar(20) DEFAULT NULL,
PRIMARY KEY (`Student_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of student
-- ----------------------------
INSERT INTO `student` VALUES ('1', '2', '001', '123', '学生一', '男', '08计本', '迁出');
INSERT INTO `student` VALUES ('2', '1', '002', '1', '叶国栋', '男', '1', '入住');
INSERT INTO `student` VALUES ('3', '2', '003', '3', '叶国', '男', '3', '入住');
-- ----------------------------
-- Table structure for `tb`
-- ----------------------------
DROP TABLE IF EXISTS `tb`;
CREATE TABLE `tb` (
`TB_ID` int(11) NOT NULL AUTO_INCREMENT,
`TB_TeacherID` int(11) DEFAULT NULL,
`TB_BuildingID` int(11) DEFAULT NULL,
PRIMARY KEY (`TB_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tb
-- ----------------------------
INSERT INTO `tb` VALUES ('1', '1', '1');
-- ----------------------------
-- Table structure for `teacher`
-- ----------------------------
DROP TABLE IF EXISTS `teacher`;
CREATE TABLE `teacher` (
`Teacher_ID` int(11) NOT NULL AUTO_INCREMENT,
`Teacher_Username` varchar(20) DEFAULT NULL,
`Teacher_Password` varchar(20) DEFAULT NULL,
`Teacher_Name` varchar(20) DEFAULT NULL,
`Teacher_Sex` varchar(10) DEFAULT NULL,
`Teacher_Tel` varchar(20) DEFAULT NULL,
PRIMARY KEY (`Teacher_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of teacher
-- ----------------------------
INSERT INTO `teacher` VALUES ('1', 'Teacher1', '123', '楼宇管理员1', '女', '123');