diff --git a/README.md b/README.md index 1909633..a43bc72 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # LMS +图书管理系统 diff --git a/doc/11 - 软件需求规格说明(SRS).doc b/doc/11 - 软件需求规格说明(SRS).doc new file mode 100644 index 0000000..c0ccff1 Binary files /dev/null and b/doc/11 - 软件需求规格说明(SRS).doc differ diff --git a/doc/13 - 软件(结构)设计说明(SDD).doc b/doc/13 - 软件(结构)设计说明(SDD).doc new file mode 100644 index 0000000..eca0eff Binary files /dev/null and b/doc/13 - 软件(结构)设计说明(SDD).doc differ diff --git a/doc/16 - 软件测试报告(STR).doc b/doc/16 - 软件测试报告(STR).doc new file mode 100644 index 0000000..1cce345 Binary files /dev/null and b/doc/16 - 软件测试报告(STR).doc differ diff --git a/源代码/SoftwareTest1/.gitignore b/src/SoftwareTest1/.gitignore similarity index 100% rename from 源代码/SoftwareTest1/.gitignore rename to src/SoftwareTest1/.gitignore diff --git a/源代码/SoftwareTest1/.idea/.gitignore b/src/SoftwareTest1/.idea/.gitignore similarity index 100% rename from 源代码/SoftwareTest1/.idea/.gitignore rename to src/SoftwareTest1/.idea/.gitignore diff --git a/源代码/SoftwareTest1/.idea/misc.xml b/src/SoftwareTest1/.idea/misc.xml similarity index 100% rename from 源代码/SoftwareTest1/.idea/misc.xml rename to src/SoftwareTest1/.idea/misc.xml diff --git a/源代码/SoftwareTest1/.idea/modules.xml b/src/SoftwareTest1/.idea/modules.xml similarity index 100% rename from 源代码/SoftwareTest1/.idea/modules.xml rename to src/SoftwareTest1/.idea/modules.xml diff --git a/src/SoftwareTest1/.idea/vcs.xml b/src/SoftwareTest1/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/src/SoftwareTest1/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/SoftwareTest1/.vs/ProjectSettings.json b/src/SoftwareTest1/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/src/SoftwareTest1/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/src/SoftwareTest1/.vs/SoftwareTest1/FileContentIndex/dfeae6fe-d415-42c3-a979-a47625b4e31f.vsidx b/src/SoftwareTest1/.vs/SoftwareTest1/FileContentIndex/dfeae6fe-d415-42c3-a979-a47625b4e31f.vsidx new file mode 100644 index 0000000..2bb7249 Binary files /dev/null and b/src/SoftwareTest1/.vs/SoftwareTest1/FileContentIndex/dfeae6fe-d415-42c3-a979-a47625b4e31f.vsidx differ diff --git a/src/SoftwareTest1/.vs/SoftwareTest1/v17/.wsuo b/src/SoftwareTest1/.vs/SoftwareTest1/v17/.wsuo new file mode 100644 index 0000000..d5a5656 Binary files /dev/null and b/src/SoftwareTest1/.vs/SoftwareTest1/v17/.wsuo differ diff --git a/src/SoftwareTest1/.vs/VSWorkspaceState.json b/src/SoftwareTest1/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..fb94780 --- /dev/null +++ b/src/SoftwareTest1/.vs/VSWorkspaceState.json @@ -0,0 +1,8 @@ +{ + "ExpandedNodes": [ + "", + "\\src" + ], + "SelectedNode": "\\SoftwareTest1.iml", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/src/SoftwareTest1/.vs/slnx.sqlite b/src/SoftwareTest1/.vs/slnx.sqlite new file mode 100644 index 0000000..7d5f1ed Binary files /dev/null and b/src/SoftwareTest1/.vs/slnx.sqlite differ diff --git a/源代码/SoftwareTest1/SoftwareTest1.iml b/src/SoftwareTest1/SoftwareTest1.iml similarity index 100% rename from 源代码/SoftwareTest1/SoftwareTest1.iml rename to src/SoftwareTest1/SoftwareTest1.iml diff --git a/源代码/SoftwareTest1/books.txt b/src/SoftwareTest1/books.txt similarity index 100% rename from 源代码/SoftwareTest1/books.txt rename to src/SoftwareTest1/books.txt diff --git a/源代码/SoftwareTest1/borrow_records.txt b/src/SoftwareTest1/borrow_records.txt similarity index 100% rename from 源代码/SoftwareTest1/borrow_records.txt rename to src/SoftwareTest1/borrow_records.txt diff --git a/源代码/SoftwareTest1/src/Book.java b/src/SoftwareTest1/src/Book.java similarity index 100% rename from 源代码/SoftwareTest1/src/Book.java rename to src/SoftwareTest1/src/Book.java diff --git a/源代码/SoftwareTest1/src/BorrowRecord.java b/src/SoftwareTest1/src/BorrowRecord.java similarity index 100% rename from 源代码/SoftwareTest1/src/BorrowRecord.java rename to src/SoftwareTest1/src/BorrowRecord.java diff --git a/源代码/SoftwareTest1/src/Library.java b/src/SoftwareTest1/src/Library.java similarity index 100% rename from 源代码/SoftwareTest1/src/Library.java rename to src/SoftwareTest1/src/Library.java diff --git a/源代码/SoftwareTest1/src/LibrarySystemGUI.java b/src/SoftwareTest1/src/LibrarySystemGUI.java similarity index 100% rename from 源代码/SoftwareTest1/src/LibrarySystemGUI.java rename to src/SoftwareTest1/src/LibrarySystemGUI.java diff --git a/源代码/SoftwareTest1/src/User.java b/src/SoftwareTest1/src/User.java similarity index 100% rename from 源代码/SoftwareTest1/src/User.java rename to src/SoftwareTest1/src/User.java diff --git a/源代码/SoftwareTest1/users.txt b/src/SoftwareTest1/users.txt similarity index 100% rename from 源代码/SoftwareTest1/users.txt rename to src/SoftwareTest1/users.txt