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-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/dtos/referentiel/RoutageSlimDto.java |   62 +++++++++++++++++++++++++++++++
 1 files changed, 62 insertions(+), 0 deletions(-)

diff --git a/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/dtos/referentiel/RoutageSlimDto.java b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/dtos/referentiel/RoutageSlimDto.java
new file mode 100644
index 0000000..549a597
--- /dev/null
+++ b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/dtos/referentiel/RoutageSlimDto.java
@@ -0,0 +1,62 @@
+package com.megatim.fdxcommons.model.dtos.referentiel;
+
+import com.megatim.reporting.adhoc.annotations.PrintColumn;
+import java.time.LocalDateTime;
+
+/**
+ *
+ * @author ASUS
+ */
+public class RoutageSlimDto {
+
+    @PrintColumn(libelle = "Code", rang = 1)
+    private String code;
+    
+    private LocalDateTime dateCreation;
+
+    private LocalDateTime dateMiseAjour;
+
+    private String createBy;
+
+    private String lastModifiedBy;
+    
+    public void setCode(String code) {
+        this.code = code;
+    }
+
+    public String getCode() {
+        return this.code;
+    }
+
+    public LocalDateTime getDateCreation() {
+        return dateCreation;
+    }
+
+    public void setDateCreation(LocalDateTime dateCreation) {
+        this.dateCreation = dateCreation;
+    }
+
+    public LocalDateTime getDateMiseAjour() {
+        return dateMiseAjour;
+    }
+
+    public void setDateMiseAjour(LocalDateTime dateMiseAjour) {
+        this.dateMiseAjour = dateMiseAjour;
+    }
+
+    public String getCreateBy() {
+        return createBy;
+    }
+
+    public void setCreateBy(String createBy) {
+        this.createBy = createBy;
+    }
+
+    public String getLastModifiedBy() {
+        return lastModifiedBy;
+    }
+
+    public void setLastModifiedBy(String lastModifiedBy) {
+        this.lastModifiedBy = lastModifiedBy;
+    }
+}

--
Gitblit v1.10.0