Please enable JavaScript.
Coggle requires JavaScript to display documents.
Online Retail System - Coggle Diagram
Online Retail System
Order
Order ID (Integer)
User ID (Integer)
Order Date (Date)
Total Amount (Float)
Payment Status (String)
Shipping Address (String)
Shopping Cart
Cart ID (Integer)
User ID (Integer)
Product List (List of Product IDs)
Total Amount (Float)
Creation Date (Date)
Payment
Payment ID (Integer)
Order ID (Integer)
Payment Method (String)
Payment Date (Date)
Amount (Float)
Transaction Status (String)
Review
Review ID (Integer)
Product ID (Integer)
User ID (Integer)
Rating (Integer)
Comment (String)
Review Date (Date)
Product
Product ID (Integer)
Name (String)
Description (String)
Price (Float)
Stock Quantity (Integer)
Category (String)
User
User ID (Integer)
Name (String)
Email (String)
Password (String)
Address (String)
Phone Number (String)