Files
MSE-PI-E2EEDA-Plein-de-eeee…/doc_resources/bdd_complete.puml
2026-04-02 10:53:06 +02:00

42 lines
844 B
Plaintext

@startuml
skinparam linestyle ortho
left to right direction
rectangle "thingy 1" as t1
rectangle "thingy 2" as t2
rectangle "thingy ..." as t_plus
rectangle "gateway" as gw
rectangle "database" as db
rectangle "data validation" as valid
rectangle "display" as display
rectangle "forecasting" as forecasting
rectangle "teams" as teams
circle "thingy interface" as t1_gw_int
circle "thingy interface" as t2_gw_int
circle "thingy interface" as t_plus_gw_int
circle "db set" as db_api_int
circle "db API" as db_get_int
circle "teams API" as teams_int
t1 --( t1_gw_int
t1_gw_int -- gw
t2 --( t2_gw_int
t2_gw_int -- gw
t_plus --( t_plus_gw_int
t_plus_gw_int -- gw
gw --( db_api_int
db_api_int -- db
db -- db_get_int
db_get_int )-r- display
db_get_int )-l- valid
db_get_int )-- forecasting
forecasting --( teams_int
teams_int -- teams
@enduml