我正在尝试创建一个论坛,其中包含创建各种类别主题的用户。其他用户可以发布回复这些是我下面的表格
categories
id
category_title
category_description
last_post_date
last_user_posted
posts
id
category_id
topic_id
post_creator
post_content
post_date
topics
id
category_id
topic_title
topic_creator
topic_last_user
topic_date
topic_reply_date
topic_views
users
id
username
password
email
forum_notification
我在为我的论坛创建 uml 类图时遇到问题,但我有点困惑,我可以为用户提供下面的一个图,但我不知道如何创建其余的
┌─────────────────────────┬
│ Users │
├─────────────────────────┬
|username: String |
|password: String |
├─────────────────────────┼
|+logIn() |
|+logOut() |
├─────────────────────────┼