MAJ diagram
This commit is contained in:
parent
a250d5de8f
commit
25c1819a6e
29
.history/API/docs/diagram_20230509113640.wsd
Normal file
29
.history/API/docs/diagram_20230509113640.wsd
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
@startuml diagram
|
||||||
|
class users {
|
||||||
|
id: text
|
||||||
|
username: text
|
||||||
|
email: email
|
||||||
|
name: text
|
||||||
|
image: file
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class trashs{
|
||||||
|
id: text
|
||||||
|
value: text
|
||||||
|
author: users
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class data {
|
||||||
|
id: text
|
||||||
|
value: number
|
||||||
|
poubelle_id: trashs
|
||||||
|
unit: text
|
||||||
|
status: bool
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
users "1" <-- trashs
|
||||||
|
trashs "1" <-- data
|
||||||
|
@enduml
|
29
.history/API/docs/diagram_20230509114833.wsd
Normal file
29
.history/API/docs/diagram_20230509114833.wsd
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
@startuml diagram
|
||||||
|
class users {
|
||||||
|
id: text
|
||||||
|
username: text
|
||||||
|
email: email
|
||||||
|
name: text
|
||||||
|
image: file
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class trashs{
|
||||||
|
id: text
|
||||||
|
value: text
|
||||||
|
author: users
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class data {
|
||||||
|
id: text
|
||||||
|
value: number
|
||||||
|
trashs_id: trashs
|
||||||
|
unit: text
|
||||||
|
status: bool
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
users "1" <-- trashs
|
||||||
|
trashs "1" <-- data
|
||||||
|
@enduml
|
29
.history/API/docs/diagram_20230509115151.wsd
Normal file
29
.history/API/docs/diagram_20230509115151.wsd
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
@startuml diagram
|
||||||
|
class users {
|
||||||
|
id: text
|
||||||
|
username: text
|
||||||
|
email: email
|
||||||
|
name: text
|
||||||
|
image: file
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class trashs{
|
||||||
|
id: text
|
||||||
|
owner: users
|
||||||
|
number: text
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class data {
|
||||||
|
id: text
|
||||||
|
value: number
|
||||||
|
trashs_id: trashs
|
||||||
|
unit: text
|
||||||
|
status: bool
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
users "1" <-- trashs
|
||||||
|
trashs "1" <-- data
|
||||||
|
@enduml
|
29
.history/API/docs/diagram_20230509115316.wsd
Normal file
29
.history/API/docs/diagram_20230509115316.wsd
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
@startuml diagram
|
||||||
|
class users {
|
||||||
|
id: text
|
||||||
|
username: text
|
||||||
|
email: email
|
||||||
|
name: text
|
||||||
|
image: file
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class trashs{
|
||||||
|
id: text
|
||||||
|
owner: users
|
||||||
|
number: text
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
class data {
|
||||||
|
id: text
|
||||||
|
trashs_id: trashs
|
||||||
|
unit: text
|
||||||
|
status: bool
|
||||||
|
value: number
|
||||||
|
created: date
|
||||||
|
updated: date
|
||||||
|
}
|
||||||
|
users "1" <-- trashs
|
||||||
|
trashs "1" <-- data
|
||||||
|
@enduml
|
@ -10,17 +10,17 @@ class users {
|
|||||||
}
|
}
|
||||||
class trashs{
|
class trashs{
|
||||||
id: text
|
id: text
|
||||||
value: text
|
owner: users
|
||||||
author: users
|
number: text
|
||||||
created: date
|
created: date
|
||||||
updated: date
|
updated: date
|
||||||
}
|
}
|
||||||
class data {
|
class data {
|
||||||
id: text
|
id: text
|
||||||
value: number
|
trashs_id: trashs
|
||||||
poubelle_id: trashs
|
|
||||||
unit: text
|
unit: text
|
||||||
status: bool
|
status: bool
|
||||||
|
value: number
|
||||||
created: date
|
created: date
|
||||||
updated: date
|
updated: date
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user