Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 426 Bytes

File metadata and controls

25 lines (17 loc) · 426 Bytes

This is an E-commerce fullstack application using React JS and Java Springboot.

We have Category entity to store categories.

+ categoryId
+ categoryName

Under each category, we have multiple products.

+ productId
+ productName
+ description
+ image
+ quantity
+ price
+ discount
+ category (Many to One)

We have users entity to store user details.

+