Skip to content

OyakXD/java-restful-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Santander Dev WEEK 2023

Java RESTful Api para a dev week 2023

Diagrama de classes

classDiagram
   class Usuario {
       - String name
       - Conta account
       - List~Feature~ features
       - List~Cartao~ card
       - List~Noticia~ news
   }
   
   class Conta {
       - String accountNumber
       - String accountAgency
       - float accountBalance
       - float accountLimit
   }
   
   class Feature {
       - String icon
       - String description
   }
   
   class Cartao {
       - String number
       - float limit
   }
   
   class Noticia {
       - String icon
       - String description
   }
   
   Usuario --> Conta
   Usuario --> Feature
   Usuario --> Cartao
   Usuario --> Noticia
Loading

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published