如何从数据库图表制作 class 图表?
How can I make class diagram from the database diagram?
![我的网购店铺数据库图][1]
brands
Column
brand_id
brand_title
table cart
Column
cart_id
p_id
ip_add
customer_id
qty
categories
Column
cat_id
cat_title
customers
Column
customer_id
customer_name
customer_email
customer_pass
customer_country
customer_city
customer_contact
customer_address
customer_image
customer_ip
customer_orders
Column
order_id
customer_id
due_amount
invoice_no
total_products
order_date
order_status
payments
Column
payment_id
invoice_no
amount
payment_mode
ref_no
code
payment_date
pending_orders
Column T
order_id
customer_id
invoice_no
product_id
qty
order_status
products
Column
product_id
cat_id
brand_id
date
product_title
product_img1
product_img2
product_img3
product_price
product_desc
product_keywords
status
admins
Column
admin_id
admin_email
admin_pass
我的数据库中有这些 table。我想制作一个 class 图。如果需要,图像中所有 table 的连接(我无法附加它)。管理员未连接。因为此 table 未在任何其他 table 中用作外键。付款 table 未连接。因为这里只添加付款以显示已完成的付款。
我真的非常非常担心。我需要 class 图。这让我很头疼。我是会编码但不会制作图表的人。我需要 class 图中的帮助。
您可以使用 MySQL workbench 的 逆向工程 功能轻松制作 ER 图。
您只需要遵循几个简单的步骤:
Ctrl+R 然后下一步直到完成。
附上一张图片供您参考。
![我的网购店铺数据库图][1]
brands
Column
brand_id
brand_title
table cart
Column
cart_id
p_id
ip_add
customer_id
qty
categories
Column
cat_id
cat_title
customers
Column
customer_id
customer_name
customer_email
customer_pass
customer_country
customer_city
customer_contact
customer_address
customer_image
customer_ip
customer_orders
Column
order_id
customer_id
due_amount
invoice_no
total_products
order_date
order_status
payments
Column
payment_id
invoice_no
amount
payment_mode
ref_no
code
payment_date
pending_orders
Column T
order_id
customer_id
invoice_no
product_id
qty
order_status
products
Column
product_id
cat_id
brand_id
date
product_title
product_img1
product_img2
product_img3
product_price
product_desc
product_keywords
status
admins
Column
admin_id
admin_email
admin_pass
我的数据库中有这些 table。我想制作一个 class 图。如果需要,图像中所有 table 的连接(我无法附加它)。管理员未连接。因为此 table 未在任何其他 table 中用作外键。付款 table 未连接。因为这里只添加付款以显示已完成的付款。 我真的非常非常担心。我需要 class 图。这让我很头疼。我是会编码但不会制作图表的人。我需要 class 图中的帮助。
您可以使用 MySQL workbench 的 逆向工程 功能轻松制作 ER 图。 您只需要遵循几个简单的步骤:
Ctrl+R 然后下一步直到完成。
附上一张图片供您参考。