浏览代码

update:uml

cainiao-hue 3 月之前
父节点
当前提交
c9415ff1dd
共有 3 个文件被更改,包括 174 次插入128 次删除
  1. 66 117
      docs-prod/schema.md
  2. 10 10
      soul-app/src/app/tabs/tabs.routes.ts
  3. 98 1
      soul-prod/README.md

+ 66 - 117
docs-prod/schema.md

@@ -1,62 +1,81 @@
-# //陪聊部分
-# 类图
+# 简单版类图
 ```plantuml
-' 聊天项目类图英文版
 @startuml
-
 class _User { 
-    + objectId: String //用户唯一标识符
-    + username: String //用户名
-    + realname: String //真实姓名
-    + password: String //用户密码
-    + gender: String //性别
-    + age: Number //年龄
-    + email: String //用户邮箱
-    + avatar: String //用户头像
-    + startChat(): void 
-    + chooseChatPartner(): String
-    + summarizeChatHistory(): void
+    + objectId: String 
+    + username: String 
+    + realname: String 
+    + password: String
+    + gender: String 
+    + age: Number 
+    + email: String
+    + avatar: String
 }
-
 class ChatPartner {
-    + objectId: String //陪聊师唯一标识符
-    + name: String //陪聊师姓名
-    + expertise: String //陪聊师专业领域
-    + avatar: String //陪聊师头像
-    + bio: String //陪聊师个人简介
-    + provideChat(): String 
+    + objectId: String
+    + name: String 
+    + expertise: String
+    + avatar: String 
+    + bio: String 
 }
-
 class ChatCompanion {
-    + objectId: String //聊天伙伴唯一标识符
-    + name: String //聊天伙伴姓名
-    + avatar: String //聊天伙伴头像
-    + bio: String //聊天伙伴个人简介
-    + provideChat(): String
+    + objectId: String
+    + name: String
+    + avatar: String 
+    + bio: String 
 }
-
 class ChatRecord {
-    + objectId: String //聊天记录唯一标识符
-    + title:String //聊天标题
-    + content:Array //聊天内容
-    + user: Pointer<User> //关联的用户对象
-    + chatpartner: Pointer<ChatPartner> //关联的聊天机器人对象
-    + getChatHistory(): List
+    + objectId: String 
+    + title:String
+    + content:Array 
+    + user: Pointer<User> 
+    + chatpartner: Pointer<ChatPartner> 
 }
-
 class ChatReport {
-    + objectId: String //报告唯一标识符
-    - report: String //分析结果
-    + generateReport(): String //生成报告的方法
+    + objectId: String
+    - report: String
 }
 class ChatEvaluate{
-    + objectId:String//评论唯一标识符
-    + avater:String//用户头像
-    + content:String//评论内容
-    + rating:Number//评论星星数
-    + user: Pointer<User> //关联的用户对象
+    + objectId:String
+    + avater:String
+    + content:String
+    + rating:Number
+    + user: Pointer<User> 
 }
-
+class PsychologicalCommunity {
+    + communityID: String 
+    + topic: String 
+}
+class PsychologicalActivity {
+    + activityID: String
+    + title: String 
+    + description: String
+    + date: Date 
+    + location: String 
+}
+class PsychologicalSurvey {
+    + surveyID: String
+    + content: String
+    + publisher: SchoolAdmin
+    + responses: List
+}
+class SchoolAdmin {
+    + adminID: String
+    + name: String
+    + email: String
+}
+class Bottle {
+    + bottleID: String
+    + content: String
+    + author: User
+    + timestamp: Date
+}
+_User "1" -- "0..*" PsychologicalCommunity
+PsychologicalActivity "1" -- "0..*" _User
+SchoolAdmin "1" -- "0..*" PsychologicalActivity
+SchoolAdmin "1" -- "0..*" PsychologicalSurvey
+PsychologicalSurvey "1" -- "0..*" _User
+_User "1" -- "0..*" Bottle
 _User "*" --> "*" ChatEvaluate
 _User "1" --> "*" ChatRecord     
 ChatPartner "1" --> "*" ChatRecord 
@@ -64,6 +83,8 @@ ChatCompanion "1" --> "*" ChatRecord
 ChatRecord "1" --> "1" ChatReport      
 @enduml
 ```
+
+
 # 时序图
 ```plantuml
 @startuml
@@ -150,78 +171,6 @@ rectangle "心理社区" {
     学校管理员 -- (设置星标用户)
 }
 
-@enduml
-```
-# 类图
-
-```plantuml
-@startuml
-class User {
-    +objectId: String
-    +username: String
-    +realname: String
-    +password: String
-    +gender: String
-    +age: Number
-    +email: String
-    +avatar: String
-    +startChat():void
-    +chooseChatPartner():String
-    +summarizeCharHistory():void
-    +registerAccount():void
-    +login(): void
-    +fillPsychologicalTest(): void
-    +publishBottle(): void
-    +retrieveBottle(): Bottle
-}
-
-class PsychologicalCommunity {
-    +communityID: String
-    +topic: String
-    +joinCommunity(): void
-}
-
-class PsychologicalActivity {
-    +activityID: String
-    +title: String
-    +description: String
-    +date: Date
-    +location: String
-    +publishActivity(): void
-}
-
-class PsychologicalSurvey {
-    +surveyID: String
-    +content: String
-    +publisher: SchoolAdmin
-    +responses: List
-    +publishSurvey(): void
-    +analyzeResults(): void
-}
-
-class SchoolAdmin {
-    +adminID: String
-    +name: String
-    +email: String
-    +publishPsychologicalActivity(): void
-    +publishPsychologicalSurvey(): void
-    +analyzeSurveyResults(): void
-    +setFeaturedUser(): void
-}
-
-class Bottle {
-    +bottleID: String
-    +content: String
-    +author: User
-    +timestamp: Date
-}
-
-User "1" -- "0..*" PsychologicalCommunity
-PsychologicalActivity "1" -- "0..*" User
-SchoolAdmin "1" -- "0..*" PsychologicalActivity
-SchoolAdmin "1" -- "0..*" PsychologicalSurvey
-PsychologicalSurvey "1" -- "0..*" User
-User "1" -- "0..*" Bottle
 @enduml
 ```
 

+ 10 - 10
soul-app/src/app/tabs/tabs.routes.ts

@@ -46,21 +46,16 @@ export const routes: Routes = [
         loadComponent: () =>
           import('../page-publishsurvey/page-publishsurvey.component').then((m) => m.PagePublishsurveyComponent),
       },
-      {
-        path: 'consult-picture',
-        loadComponent: () =>
-          import('../consult-picture/consult-picture.component').then((m) => m.ConsultPictureComponent),
-      },
+      // {
+      //   path: 'consult-picture',
+      //   loadComponent: () =>
+      //     import('../consult-picture/consult-picture.component').then((m) => m.ConsultPictureComponent),
+      // },
       {
         path: 'report-modal',
         loadComponent: () =>
           import('../report-modal/report-modal.component').then((m) => m.ReportModalComponent),
       },
-      {
-        path: '',
-        redirectTo: '/tabs/tab1',
-        pathMatch: 'full',
-      },
       {
         path: 'drift-bottle',
         loadComponent: () =>
@@ -71,6 +66,11 @@ export const routes: Routes = [
         loadComponent: () =>
           import('../my-drift-bottle/my-drift-bottle.component').then((m) => m.MyDriftBottleComponent),
       },
+      {
+        path: '',
+        redirectTo: '/tabs/tab1',
+        pathMatch: 'full',
+      },
       
     ],
   },

+ 98 - 1
soul-prod/README.md

@@ -164,4 +164,101 @@
 > 项目名称的生成:
 {{项目策划文档}},作为一名创意大师,请帮我设计本项目的名称,并且要突出心理、陪聊的关键字。
 
-> 心灵陪聊
+> 心灵陪聊
+# 类图
+```plantuml
+' 聊天项目类图英文版
+@startuml
+
+class _User { 
+    + objectId: String //用户唯一标识符
+    + username: String //用户名
+    + realname: String //真实姓名
+    + password: String //用户密码
+    + gender: String //性别
+    + age: Number //年龄
+    + email: String //用户邮箱
+    + avatar: String //用户头像
+}
+
+class ChatPartner {
+    + objectId: String //陪聊师唯一标识符
+    + name: String //陪聊师姓名
+    + expertise: String //陪聊师专业领域
+    + avatar: String //陪聊师头像
+    + bio: String //陪聊师个人简介
+}
+
+class ChatCompanion {
+    + objectId: String //聊天伙伴唯一标识符
+    + name: String //聊天伙伴姓名
+    + avatar: String //聊天伙伴头像
+    + bio: String //聊天伙伴个人简介
+}
+
+class ChatRecord {
+    + objectId: String //聊天记录唯一标识符
+    + title:String //聊天标题
+    + content:Array //聊天内容
+    + user: Pointer<User> //关联的用户对象
+    + chatpartner: Pointer<ChatPartner> //关联的聊天机器人对象
+}
+
+class ChatReport {
+    + objectId: String //报告唯一标识符
+    - report: String //分析结果
+}
+class ChatEvaluate{
+    + objectId:String//评论唯一标识符
+    + avater:String//用户头像
+    + content:String//评论内容
+    + rating:Number//评论星星数
+    + user: Pointer<User> //关联的用户对象
+}
+
+class PsychologicalCommunity {
+    + communityID: String // 社区唯一标识符
+    + topic: String // 社区主题
+}
+
+class PsychologicalActivity {
+    + activityID: String // 活动唯一标识符
+    + title: String // 活动标题
+    + description: String // 活动描述
+    + date: Date // 活动日期
+    + location: String // 活动地点
+}
+
+class PsychologicalSurvey {
+    + surveyID: String // 调查唯一标识符
+    + content: String // 调查内容
+    + publisher: SchoolAdmin // 发布者
+    + responses: List // 调查响应列表
+}
+
+class SchoolAdmin {
+    + adminID: String // 管理员唯一标识符
+    + name: String // 管理员姓名
+    + email: String // 管理员邮箱
+}
+
+class Bottle {
+    + bottleID: String // 瓶子唯一标识符
+    + content: String // 瓶子内容
+    + author: User // 作者
+    + timestamp: Date // 时间戳
+}
+
+_User "1" -- "0..*" PsychologicalCommunity
+PsychologicalActivity "1" -- "0..*" _User
+SchoolAdmin "1" -- "0..*" PsychologicalActivity
+SchoolAdmin "1" -- "0..*" PsychologicalSurvey
+PsychologicalSurvey "1" -- "0..*" _User
+_User "1" -- "0..*" Bottle
+_User "*" --> "*" ChatEvaluate
+_User "1" --> "*" ChatRecord     
+ChatPartner "1" --> "*" ChatRecord 
+ChatCompanion "1" --> "*" ChatRecord 
+ChatRecord "1" --> "1" ChatReport      
+@enduml
+```