master
yangpeng 2024-07-19 09:48:30 +08:00
commit c7a94c52d0
14 changed files with 184 additions and 0 deletions

38
.gitignore vendored 100644
View File

@ -0,0 +1,38 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/compiler.xml
.idea/libraries/
*.iws
*.iml
*.ipr
### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/
### Mac OS ###
.DS_Store

8
.idea/.gitignore vendored 100644
View File

@ -0,0 +1,8 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" native2AsciiForPropertiesFiles="true" defaultCharsetForPropertiesFiles="UTF-8">
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
<file url="PROJECT" charset="UTF-8" />
</component>
</project>

14
.idea/misc.xml 100644
View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="MavenProjectsManager">
<option name="originalFiles">
<list>
<option value="$PROJECT_DIR$/pom.xml" />
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

6
.idea/vcs.xml 100644
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

17
pom.xml 100644
View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.bwwei</groupId>
<artifactId>day_02ks</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

93
sql/7.19ks.sql 100644
View File

@ -0,0 +1,93 @@
/*
Navicat Premium Dump SQL
Source Server : 123.60.88.248
Source Server Type : MySQL
Source Server Version : 50744 (5.7.44)
Source Host : 123.60.88.248:3306
Source Schema : 7.19ks
Target Server Type : MySQL
Target Server Version : 50744 (5.7.44)
File Encoding : 65001
Date: 19/07/2024 08:56:18
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for stu_cou
-- ----------------------------
DROP TABLE IF EXISTS `stu_cou`;
CREATE TABLE `stu_cou` (
`sc_id` int(11) NOT NULL AUTO_INCREMENT,
`c_id` int(11) NULL DEFAULT NULL,
`stu_id` int(11) NULL DEFAULT NULL,
PRIMARY KEY (`sc_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 16 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of stu_cou
-- ----------------------------
INSERT INTO `stu_cou` VALUES (1, 2, 1);
INSERT INTO `stu_cou` VALUES (2, 2, 2);
INSERT INTO `stu_cou` VALUES (3, 2, 3);
INSERT INTO `stu_cou` VALUES (4, 3, 5);
INSERT INTO `stu_cou` VALUES (5, 1, 4);
INSERT INTO `stu_cou` VALUES (6, 3, 5);
INSERT INTO `stu_cou` VALUES (7, 3, 6);
INSERT INTO `stu_cou` VALUES (8, 1, 7);
INSERT INTO `stu_cou` VALUES (9, 1, 5);
INSERT INTO `stu_cou` VALUES (10, 1, 7);
INSERT INTO `stu_cou` VALUES (11, 3, 8);
INSERT INTO `stu_cou` VALUES (12, 3, 9);
INSERT INTO `stu_cou` VALUES (13, 3, 10);
INSERT INTO `stu_cou` VALUES (14, 3, 2);
INSERT INTO `stu_cou` VALUES (15, 3, 2);
-- ----------------------------
-- Table structure for t_course
-- ----------------------------
DROP TABLE IF EXISTS `t_course`;
CREATE TABLE `t_course` (
`c_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '课程编号',
`c_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '课程名称',
PRIMARY KEY (`c_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of t_course
-- ----------------------------
INSERT INTO `t_course` VALUES (1, '中文');
INSERT INTO `t_course` VALUES (2, '英文');
INSERT INTO `t_course` VALUES (3, '数理');
-- ----------------------------
-- Table structure for t_student
-- ----------------------------
DROP TABLE IF EXISTS `t_student`;
CREATE TABLE `t_student` (
`stu_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '学生编号',
`stu_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '学生姓名',
`stu_sex` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '学生性别',
PRIMARY KEY (`stu_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of t_student
-- ----------------------------
INSERT INTO `t_student` VALUES (1, '张三', '');
INSERT INTO `t_student` VALUES (2, '李四', '');
INSERT INTO `t_student` VALUES (3, '王五', '');
INSERT INTO `t_student` VALUES (4, '赵六', '');
INSERT INTO `t_student` VALUES (5, '田七', '');
INSERT INTO `t_student` VALUES (6, '老八', '');
INSERT INTO `t_student` VALUES (7, '小九', '');
INSERT INTO `t_student` VALUES (8, '', '');
INSERT INTO `t_student` VALUES (9, '', '');
INSERT INTO `t_student` VALUES (10, '', '');
INSERT INTO `t_student` VALUES (11, '绿', '');
SET FOREIGN_KEY_CHECKS = 1;

BIN
sql/7.19ks.zip 100644

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
理论/22.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

BIN
理论/22资料.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
理论/33.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
理论/33资料.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB