From db891808101479c80136a86cb5ef172371ab772b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AC=A6=E6=99=8B=E5=BA=B7?= <1245788683@qq.com> Date: Mon, 13 Oct 2025 21:09:46 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=AC=A6=E6=99=8B=E5=BA=B7=E7=AC=AC4?= =?UTF-8?q?=E5=91=A8=E4=B8=AA=E4=BA=BA=E5=91=A8=E8=AE=A1=E5=88=92=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../week-04/members/fjk-weekly-plan-04.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 doc/process/weekly/week-04/members/fjk-weekly-plan-04.md diff --git a/doc/process/weekly/week-04/members/fjk-weekly-plan-04.md b/doc/process/weekly/week-04/members/fjk-weekly-plan-04.md new file mode 100644 index 00000000..d8286421 --- /dev/null +++ b/doc/process/weekly/week-04/members/fjk-weekly-plan-04.md @@ -0,0 +1,35 @@ +# 个人周计划-第4周 + +## 姓名和起止时间 + +**姓  名:** 符晋康 +**团队名称:** 2班-老师指定的组队 +**开始时间:** 2023-10-13 +**结束时间:** 2023-10-20 + + +## 本周任务计划安排 + +| 序号 | 计划内容 | 协作人 | 情况说明 | +|----|-------------|-------|--------------------------------------------| +| 1 | 配置项目开发环境 | 个人 | 配置前端Vue,后端SpringBoot的相关开发环境 | +| 2 | 学习后端知识 | 个人 | 周内持续学习SpringBoot开发的相关知识 | +| 3 | 确定分工 | 组员 | 2023-10-13 开会细分确定团队分工,统一开发工具 | +| 4 | 学习原型设计的相关知识 | 个人 | 周内持续学习原型设计的使用方法、并通过借鉴其他成熟的界面原型完善自己的设计 | +| 5 | 设计项目原型 | 组员 | 通过学习借鉴优秀的原型界面设计模板,按照与老师沟通的需求设计Web端系统原型Demo | + +## 小结 + +1. **学习需求:** 希望能有对于原型设计,知识图谱相关 以及SpringBoot开发的教学; +2. **知识储备:** 提前学习后续需要使用的知识,为后续的后端开发做准备; +3. **文档撰写:** 学习markdown文档的撰写。 + +--- + +## 【注】 + +1. 在小结一栏中写出希望得到如何的帮助,如讲座等; +1. 请将个人计划和总结提前发给负责人; +1. 周任务总结与计划是项目小组评分考核的重要依据,将直接记入平时成绩,请各位同学按要求认真填写并按时提交; +1. 所有组员都需提交个人周计划、周总结文档,按时上传至代码托管平台; +``` \ No newline at end of file -- 2.34.1 From feafde465560ac6cde833c1be839ceecfe351c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AC=A6=E6=99=8B=E5=BA=B7?= <1245788683@qq.com> Date: Thu, 27 Nov 2025 14:07:13 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E5=90=8E=E7=AB=AF=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=BB=93=E6=9E=84=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/ArtifactLLM.iml | 9 + .idea/compiler.xml | 26 ++ .idea/encodings.xml | 9 + .idea/jarRepositories.xml | 20 + .idea/misc.xml | 17 + .idea/modules.xml | 8 + .idea/shelf/_2025_11_24_20_43____.xml | 4 + .../shelved.patch | 45 +++ .idea/vcs.xml | 6 + .idea/workspace.xml | 366 ++++++++++++++++++ src/ArtifactLLM_banker/artifact-ai/pom.xml | 53 +++ .../hnu/artifactai/ArtifactAiApplication.java | 13 + .../src/main/resources/application.properties | 1 + .../ArtifactAiApplicationTests.java | 13 + .../artifact-common/pom.xml | 52 +++ .../ArtifactCommonApplication.java | 13 + .../src/main/resources/application.properties | 1 + .../ArtifactCommonApplicationTests.java | 13 + .../artifact-knowledge/pom.xml | 52 +++ .../ArtifactKnowledgeApplication.java | 13 + .../src/main/resources/application.properties | 1 + .../ArtifactKnowledgeApplicationTests.java | 13 + src/ArtifactLLM_banker/artifact-relic/pom.xml | 52 +++ .../ArtifactRelicApplication.java | 13 + .../src/main/resources/application.properties | 1 + .../ArtifactRelicApplicationTests.java | 13 + .../artifact-system/pom.xml | 52 +++ .../ArtifactSystemApplication.java | 13 + .../src/main/resources/application.properties | 1 + .../ArtifactSystemApplicationTests.java | 13 + src/ArtifactLLM_banker/artifact-web/pom.xml | 52 +++ .../artifactweb/ArtifactWebApplication.java | 13 + .../src/main/resources/application.properties | 1 + .../ArtifactWebApplicationTests.java | 13 + src/ArtifactLLM_banker/pom.xml | 79 ++++ 35 files changed, 1064 insertions(+) create mode 100644 .idea/ArtifactLLM.iml create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/shelf/_2025_11_24_20_43____.xml create mode 100644 .idea/shelf/在进行更新之前于_2025_11_24_20_43_取消提交了更改_[更改]/shelved.patch create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 src/ArtifactLLM_banker/artifact-ai/pom.xml create mode 100644 src/ArtifactLLM_banker/artifact-ai/src/main/java/cn/edu/hnu/artifactai/ArtifactAiApplication.java create mode 100644 src/ArtifactLLM_banker/artifact-ai/src/main/resources/application.properties create mode 100644 src/ArtifactLLM_banker/artifact-ai/src/test/java/cn/edu/hnu/artifactai/ArtifactAiApplicationTests.java create mode 100644 src/ArtifactLLM_banker/artifact-common/pom.xml create mode 100644 src/ArtifactLLM_banker/artifact-common/src/main/java/cn/edu/hnu/artifactcommon/ArtifactCommonApplication.java create mode 100644 src/ArtifactLLM_banker/artifact-common/src/main/resources/application.properties create mode 100644 src/ArtifactLLM_banker/artifact-common/src/test/java/cn/edu/hnu/artifactcommon/ArtifactCommonApplicationTests.java create mode 100644 src/ArtifactLLM_banker/artifact-knowledge/pom.xml create mode 100644 src/ArtifactLLM_banker/artifact-knowledge/src/main/java/cn/edu/hnu/artifactknowledge/ArtifactKnowledgeApplication.java create mode 100644 src/ArtifactLLM_banker/artifact-knowledge/src/main/resources/application.properties create mode 100644 src/ArtifactLLM_banker/artifact-knowledge/src/test/java/cn/edu/hnu/artifactknowledge/ArtifactKnowledgeApplicationTests.java create mode 100644 src/ArtifactLLM_banker/artifact-relic/pom.xml create mode 100644 src/ArtifactLLM_banker/artifact-relic/src/main/java/cn/edu/hnu/artifactrelic/ArtifactRelicApplication.java create mode 100644 src/ArtifactLLM_banker/artifact-relic/src/main/resources/application.properties create mode 100644 src/ArtifactLLM_banker/artifact-relic/src/test/java/cn/edu/hnu/artifactrelic/ArtifactRelicApplicationTests.java create mode 100644 src/ArtifactLLM_banker/artifact-system/pom.xml create mode 100644 src/ArtifactLLM_banker/artifact-system/src/main/java/cn/edu/hnu/artifactsystem/ArtifactSystemApplication.java create mode 100644 src/ArtifactLLM_banker/artifact-system/src/main/resources/application.properties create mode 100644 src/ArtifactLLM_banker/artifact-system/src/test/java/cn/edu/hnu/artifactsystem/ArtifactSystemApplicationTests.java create mode 100644 src/ArtifactLLM_banker/artifact-web/pom.xml create mode 100644 src/ArtifactLLM_banker/artifact-web/src/main/java/cn/edu/hnu/artifactweb/ArtifactWebApplication.java create mode 100644 src/ArtifactLLM_banker/artifact-web/src/main/resources/application.properties create mode 100644 src/ArtifactLLM_banker/artifact-web/src/test/java/cn/edu/hnu/artifactweb/ArtifactWebApplicationTests.java create mode 100644 src/ArtifactLLM_banker/pom.xml diff --git a/.idea/ArtifactLLM.iml b/.idea/ArtifactLLM.iml new file mode 100644 index 00000000..d6ebd480 --- /dev/null +++ b/.idea/ArtifactLLM.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 00000000..41d9d6f1 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 00000000..8ab84b10 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 00000000..712ab9d9 --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..799349f9 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,17 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..3c2cc646 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/shelf/_2025_11_24_20_43____.xml b/.idea/shelf/_2025_11_24_20_43____.xml new file mode 100644 index 00000000..edf11ff7 --- /dev/null +++ b/.idea/shelf/_2025_11_24_20_43____.xml @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/.idea/shelf/在进行更新之前于_2025_11_24_20_43_取消提交了更改_[更改]/shelved.patch b/.idea/shelf/在进行更新之前于_2025_11_24_20_43_取消提交了更改_[更改]/shelved.patch new file mode 100644 index 00000000..dfc51565 --- /dev/null +++ b/.idea/shelf/在进行更新之前于_2025_11_24_20_43_取消提交了更改_[更改]/shelved.patch @@ -0,0 +1,45 @@ +Index: doc/process/weekly/week-09/group/weekly-summary-09.md +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/doc/process/weekly/week-09/group/weekly-summary-09.md b/doc/process/weekly/week-09/group/weekly-summary-09.md +new file mode 100644 +--- /dev/null (date 1763476174182) ++++ b/doc/process/weekly/week-09/group/weekly-summary-09.md (date 1763476174182) +@@ -0,0 +1,35 @@ ++# 小组周总结-第8周 ++ ++## 团队名称和起止时间 ++ ++**团队名称:** 2班-老师指定的组队 ++ ++**开始时间:** 2025-11-17 ++ ++**结束时间:** 2025-11-24 ++ ++## 本周任务计划安排 ++ ++ ++| 序号 | 总结内容 | 执行情况 | 情况说明 | ++|----|------------------------|------|---------------------------------------------------| ++| 1 | 初步完成接口文档 | 完成 | 2025-11-17开始,所有成员学习接口文档,并完成接口文档的统一编写。 | ++| 2 | 项目后端编码 | 完成 | 2025-11-17开始,后端成员根据接口文档,完成接口文档的实现。 | ++| 3 | 项目前端编码 | 完成 | 2025-11-17开始,前端成员根据原型界面,完成前端页面的代码实现,并根据功能逐渐完整接口文档 | ++| 4 | 完善迭代开发计划 | 完成 | 根据指导老师的反馈意见修改完善迭代开发计划 | ++| 5 | 完善该次迭代总的用例图、活动图、顺序图和类图 | 完成 | 根据老师的反馈意见,修改完善系统总的用例图 以及该迭代的主要业务功能的活动图、顺序图和类图 | ++ ++## 小结 ++ ++1. **文档优先:** 本周重点是确认迭代开发计划,编写该次迭代的主要业务功能的多种uml图,为后续开发奠定基础。 ++2. **分工协作:** 小组成员应按照任务分配,各司其职,同时保持沟通协作,确保各项任务顺利推进。 ++3. **质量把控:** 各种文档完成后需进行综合评估,确保准确反映系统功能;文档编写要遵循规范,保证质量。 ++ ++--- ++ ++## 【注】 ++ ++1. 在小结一栏中写出希望得到如何的帮助,如讲座等; ++2. 请将个人计划和总结提前发给负责人; ++3. 周任务总结与计划是项目小组评分考核的重要依据,将直接记入平时成绩,请各位同学按要求认真填写并按时提交; ++4. PM综合本小组成员工作情况提交小组周计划、周总结报告,按时上传至代码托管平台。 diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..e589a3be --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + {} + { + "isMigrated": true +} + { + "associatedIndex": 5 +} + + + + { + "keyToString": { + "RunOnceActivity.ShowReadmeOnStart": "true", + "RunOnceActivity.git.unshallow": "true", + "git-widget-placeholder": "fujinkang__branch", + "kotlin-language-version-configured": "true", + "last_opened_file_path": "E:/IDEA_projects/ArtifactLLM", + "node.js.detected.package.eslint": "true", + "node.js.detected.package.tslint": "true", + "node.js.selected.package.eslint": "(autodetect)", + "node.js.selected.package.tslint": "(autodetect)", + "nodejs_package_manager_path": "npm", + "project.structure.last.edited": "项目", + "project.structure.proportion": "0.0", + "project.structure.side.proportion": "0.0", + "settings.editor.selected.configurable": "configurable.group.editor", + "vue.rearranger.settings.migration": "true" + }, + "keyToStringList": { + "DatabaseDriversLRU": [ + "mysql" + ] + } +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1760357734223 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +