-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Thématiques Plans de Contrôle] Création des nouvelles tables de gest…
- Loading branch information
Showing
152 changed files
with
3,780 additions
and
1,905 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
.../kotlin/fr/gouv/cacem/monitorenv/domain/entities/controlPlan/ControlPlanSubthemeEntity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fr.gouv.cacem.monitorenv.domain.entities.controlPlan | ||
|
||
data class ControlPlanSubThemeEntity( | ||
val id: Int, | ||
val themeId: Int, | ||
val subTheme: String, | ||
val year: Int, | ||
) |
7 changes: 7 additions & 0 deletions
7
.../main/kotlin/fr/gouv/cacem/monitorenv/domain/entities/controlPlan/ControlPlanTagEntity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package fr.gouv.cacem.monitorenv.domain.entities.controlPlan | ||
|
||
data class ControlPlanTagEntity( | ||
val id: Int, | ||
val tag: String, | ||
val themeId: Int, | ||
) |
6 changes: 6 additions & 0 deletions
6
...ain/kotlin/fr/gouv/cacem/monitorenv/domain/entities/controlPlan/ControlPlanThemeEntity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package fr.gouv.cacem.monitorenv.domain.entities.controlPlan | ||
|
||
data class ControlPlanThemeEntity( | ||
val id: Int, | ||
val theme: String, | ||
) |
1 change: 1 addition & 0 deletions
1
...c/main/kotlin/fr/gouv/cacem/monitorenv/domain/entities/controlTheme/ControlThemeEntity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
.../fr/gouv/cacem/monitorenv/domain/entities/mission/envAction/EnvActionControlPlanEntity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package fr.gouv.cacem.monitorenv.domain.entities.mission.envAction | ||
|
||
data class EnvActionControlPlanEntity( | ||
val themeId: Int? = null, | ||
val subThemeIds: List<Int>? = emptyList(), | ||
val tagIds: List<Int>? = emptyList(), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...src/main/kotlin/fr/gouv/cacem/monitorenv/domain/entities/mission/envAction/ThemeEntity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...ain/kotlin/fr/gouv/cacem/monitorenv/domain/repositories/IControlPlanSubThemeRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fr.gouv.cacem.monitorenv.domain.repositories | ||
|
||
import fr.gouv.cacem.monitorenv.domain.entities.controlPlan.ControlPlanSubThemeEntity | ||
|
||
interface IControlPlanSubThemeRepository { | ||
fun findAll(): List<ControlPlanSubThemeEntity> | ||
fun findByYear(year: Int): List<ControlPlanSubThemeEntity> | ||
} |
8 changes: 8 additions & 0 deletions
8
...src/main/kotlin/fr/gouv/cacem/monitorenv/domain/repositories/IControlPlanTagRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fr.gouv.cacem.monitorenv.domain.repositories | ||
|
||
import fr.gouv.cacem.monitorenv.domain.entities.controlPlan.ControlPlanTagEntity | ||
|
||
interface IControlPlanTagRepository { | ||
fun findAll(): List<ControlPlanTagEntity> | ||
fun findByYear(year: Int): List<ControlPlanTagEntity> | ||
} |
8 changes: 8 additions & 0 deletions
8
...c/main/kotlin/fr/gouv/cacem/monitorenv/domain/repositories/IControlPlanThemeRepository.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fr.gouv.cacem.monitorenv.domain.repositories | ||
|
||
import fr.gouv.cacem.monitorenv.domain.entities.controlPlan.ControlPlanThemeEntity | ||
|
||
interface IControlPlanThemeRepository { | ||
fun findAll(): List<ControlPlanThemeEntity> | ||
fun findByYear(year: Int): List<ControlPlanThemeEntity> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.