You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
636 B
28 lines
636 B
@startuml
|
|
|
|
!define ENTITY entity
|
|
!define PK "<u>P</u>"
|
|
!define FK "<b>F</b>"
|
|
define PK primary key
|
|
!define FK foreign key
|
|
|
|
skinparam class {
|
|
BackgroundColor LightBlue
|
|
BorderColor Black
|
|
BackgroundColor LightYellow
|
|
ArrowColor Black
|
|
Shadowing false
|
|
}
|
|
|
|
package "Modèle de Données" {
|
|
|
|
|
|
Utilisateur "1" -- "1" Montre : Possède
|
|
Utilisateur "1" -- "n" Activité : Réalise
|
|
Activité "1" -- "n" AnalyseFréquenceCardiaque : Comprend
|
|
Utilisateur "1" -- "n" Alerte : Reçoit
|
|
Utilisateur "n" -- "n" Ami : EstAmiAvec
|
|
Utilisateur "1" -- "0-1" Athlète : EstAthlète
|
|
|
|
|
|
Objet -> Objet : Message Réflexif |