From 678c2f4914fa0aa857452091b62602cb01e2f3d7 Mon Sep 17 00:00:00 2001 From: AryanGh-imp Date: Wed, 17 Jun 2026 01:53:38 +0330 Subject: [PATCH] Update README.md --- README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3737e64..fb359ef 100644 --- a/README.md +++ b/README.md @@ -154,6 +154,12 @@ Requirements: * A user can have multiple orders. * An order can contain multiple items. +Note: +Order is a reserved SQL keyword in many database systems. +Choose an appropriate table name such as `orders` if needed. + +--- + --- ### 4. OrderDetail @@ -198,7 +204,25 @@ Before writing any SQL, create a simple Entity Relationship Diagram (ERD) to vis * Relationships between tables This diagram does not need to be submitted, but it is strongly recommended as part of the database design process. - + +## 📁 Project Structure + +A suggested structure for the project: + +- model + - Database entity classes + +- database + - PostgreSQL connection management classes + +- dao + - JDBC database access classes + +- service + - Application business logic + +- ui + - Console user interface ## 💻 Required Features & App Flow