mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Adding class diagram for docStore
This commit is contained in:
parent
dec55131df
commit
f4c3282579
BIN
source/_static/bundles/docStore/doc_store_classes.png
Normal file
BIN
source/_static/bundles/docStore/doc_store_classes.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
46
source/_static/bundles/docStore/doc_store_classes.puml
Normal file
46
source/_static/bundles/docStore/doc_store_classes.puml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
# diagramme de classe du module "docStore"
|
||||||
|
|
||||||
|
@startuml
|
||||||
|
|
||||||
|
title Diagramme de classe du module "docStore"
|
||||||
|
|
||||||
|
|
||||||
|
package "PersonBundle" {
|
||||||
|
class Person
|
||||||
|
class Center
|
||||||
|
class PersonDocument
|
||||||
|
}
|
||||||
|
|
||||||
|
package "DocStoreBundle" {
|
||||||
|
Document "many" --- "many" DocumentCategory
|
||||||
|
}
|
||||||
|
|
||||||
|
Document <|-- "herite" PersonDocument
|
||||||
|
|
||||||
|
class "Document" {
|
||||||
|
- int id
|
||||||
|
- varchar_150 title
|
||||||
|
- text description
|
||||||
|
- ArrayCollection_DocumentCategory categories
|
||||||
|
- varchar_150 content #link to openstack
|
||||||
|
- Center center
|
||||||
|
- Scope scope
|
||||||
|
- User user
|
||||||
|
- DateTime date # Creation date
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class "DocumentCategory" {
|
||||||
|
.. Primary Key ..
|
||||||
|
- varchar_150 bundle_id
|
||||||
|
- int internal_bundle_id
|
||||||
|
==
|
||||||
|
- json_array name
|
||||||
|
- ArrayCollection_Document documents
|
||||||
|
}
|
||||||
|
|
||||||
|
class "PersonDocument" {
|
||||||
|
- Person person
|
||||||
|
}
|
||||||
|
|
||||||
|
@enduml
|
Loading…
x
Reference in New Issue
Block a user