commit | 8e412adfc4e232abe72ee17a58056f19be57eb7c | [log] [tgz] |
---|---|---|
author | 22301071 <22301071@bjtu.edu.cn> | Thu Apr 24 22:24:51 2025 +0800 |
committer | 22301071 <22301071@bjtu.edu.cn> | Tue Apr 29 16:33:57 2025 +0800 |
tree | 65674d141ac80a287b8fb4b13fd9ff0fe7a8cbb6 | |
parent | a26ed3fff78c38dcf168af68d228bddd0210f0ed [diff] |
添加了修改密码 忘记密码 邀请码的生成与验证 Change-Id: I88ffc40e64943c7c9fcd411c763e788e6e49c834
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 22f3728..4a4d894 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties
@@ -3,6 +3,7 @@ spring.datasource.url=jdbc:mysql://localhost:3306/g8backend spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.sql.init.mode=always +logging.level.root=DEBUG mybatis-plus.mapper-locations=classpath*:/mapper/**/*.xml
diff --git a/src/main/resources/schema.sql b/src/main/resources/schema.sql index bf74097..5cb15a5 100644 --- a/src/main/resources/schema.sql +++ b/src/main/resources/schema.sql
@@ -128,4 +128,4 @@ PRIMARY KEY (user_id, tag_id), FOREIGN KEY (user_id) REFERENCES users(user_id), FOREIGN KEY (tag_id) REFERENCES tags(tag_id) -); \ No newline at end of file +);