Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carloshenriquefs/shirt-store
👕🏷️ - Project Shirt Store
https://github.com/carloshenriquefs/shirt-store
docker java21 maven mongodb
Last synced: 4 days ago
JSON representation
👕🏷️ - Project Shirt Store
- Host: GitHub
- URL: https://github.com/carloshenriquefs/shirt-store
- Owner: carloshenriquefs
- License: mit
- Created: 2024-07-21T03:17:39.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-10T22:34:54.000Z (3 months ago)
- Last Synced: 2024-08-24T02:19:46.425Z (3 months ago)
- Topics: docker, java21, maven, mongodb
- Language: Java
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## :construction: - Project Shirt-Store:
- Projeto de uma loja de camisetas para venda;
##
##
## 📂 - Estrutura de Pastas:
```
├── shirtstore
│ ├── controller
│ | ├── exceptions
| ├── dto
| ├── entity
| ├── repository
| ├── service
│ | ├── impl
| | |
├── tests
```##
## 📋 - Diagrama de Classes:
```mermaid
classDiagram
class CouponDiscount {
-UUID _id
-Double discount
-String codeCoupon
}class User {
-UUID _id
-String name
-String lastName
-String email
-String password
-String address
-String number
-String birthday
-String phoneNumber
-Boolean notifications
-DateTime createdAt
-DateTime updateAt
}class PurchaseHistory {
-UUID _id
-UUID itemId
-UUID userId
-String total
-String discount
-List couponsList
-DateTime createdAt
-DateTime updateAt
}class T-Shit {
-UUID _id
-String price
-String discount
-String title
-String description
-String image
-Long stock
-TechnicalDescription techDesc
-DateTime createdAt
-DateTime updatedAt
}class TechnicalDescription {
-String color
-String size
-String type
-String genre
}class ShoppingCart {
-UUID _id
-UUID userId
-List items
-DateTime createdAt
-DateTime updatedAt
}
```