From 23a46b4be35277e06ec89f48730eeb694e686be8 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Thu, 18 Jun 2026 15:40:06 +0000
Subject: [PATCH] add fdx-commons and fdx-consultation
---
fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/referentiel/dtos/GroupeParticipantSlimResponse.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 51 insertions(+), 0 deletions(-)
diff --git a/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/referentiel/dtos/GroupeParticipantSlimResponse.java b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/referentiel/dtos/GroupeParticipantSlimResponse.java
new file mode 100644
index 0000000..43bf623
--- /dev/null
+++ b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/referentiel/dtos/GroupeParticipantSlimResponse.java
@@ -0,0 +1,51 @@
+package com.megatim.fdxconsultation.model.referentiel.dtos;
+
+import com.megatim.fdxcommons.model.referentiel.GroupeParticipant;
+import java.io.Serializable;
+import java.time.LocalDateTime;
+
+/**
+ *
+ * @author Gabuntu
+ */
+public class GroupeParticipantSlimResponse implements Serializable {
+
+ private final GroupeParticipant groupeParticipant;
+
+ public GroupeParticipantSlimResponse(GroupeParticipant groupeParticipant) {
+ this.groupeParticipant = groupeParticipant;
+ }
+
+ public String getCode() {
+ return groupeParticipant.getCode();
+ }
+
+ public String getLibelle() {
+ return groupeParticipant.getLibelle();
+ }
+
+ public String getDescription() {
+ return groupeParticipant.getDescription();
+ }
+
+ public ReferentielSlimResponse getReferentiel() {
+ return new ReferentielSlimResponse(groupeParticipant.getReferentiel());
+ }
+
+ public String getCreateBy() {
+ return groupeParticipant.getCreateBy();
+ }
+
+ public String getLastModifiedBy() {
+ return groupeParticipant.getLastModifiedBy();
+ }
+
+ public LocalDateTime getDateCreation() {
+ return groupeParticipant.getDateCreation();
+ }
+
+ public LocalDateTime getDateMiseAjour() {
+ return groupeParticipant.getDateMiseAjour();
+ }
+
+}
--
Gitblit v1.10.0