-
Notifications
You must be signed in to change notification settings - Fork 0
2. Audit
Adrien Rosi edited this page Dec 2, 2024
·
3 revisions
Néant
- Adresse du bâtiment
- Libellé
- Code postal
- Commune
- Identifiant depuis la Base Adresse Nationale
- Identifiant depuis le Répertoire National des Bâtiments
- Bâtiment
- Type de bâtiment
- Année de construction
- Altitude
- Nombre de logements
- Surface habitable
- Hauteur sous plafond moyenne
- Logement
- Description
- Surface habitable
- Hauteur sous plafond moyenne
classDiagram
Audit --* Adresse
Audit --* Batiment
Audit --* Logement
Batiment --* TypeBatiment
class Audit {
string id
DateTime date_creation
Adresse adresse
Batiment batiment
?Logement logement
}
class Adresse {
string libelle
string code_postal
string commune
?string ban_id
?string rnb_id
}
class Batiment {
TypeBatiment type
int annee_construction
int altitude
int logements
float surface_habitable
float hauteur_sous_plafond
}
class Logement {
string description
float surface_habitable
float hauteur_sous_plafond
}
class TypeBatiment {
<<Enum>>
MAISON
IMMEUBLE
}