Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 689 Bytes

README.md

File metadata and controls

41 lines (35 loc) · 689 Bytes

Santander Account App 2023

Java RESTful API criada como último projeto do Bootcamp Santander 2023 na trilha Backend Java

Diagrama de Classes

classDiagram
  class User {
    - String name
    - Account account 
    - Feature[] features
    - Card card
    - News[] news
  }

  class Account {
    - String number
    - String agency
    - Number balance
    - Number limit
  }

  class Feature {
    - String icon
    - String description
  }

  class Card {
    - String number
    - Number limit
  }

  class News {
    - String icon
    - String description
  }

  User "1" *-- "1"Account
  User "1" *-- "N" Feature
  User "1" *-- "1" Card
  User "1" *-- "N" News
Loading