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-tools/src/main/java/com/megatim/fdxcommons/tools/integration/dto/ApiIntegrationDataDto.java |   71 +++++++++++++++++++++++++++++++++++
 1 files changed, 71 insertions(+), 0 deletions(-)

diff --git a/fdx-commons/fdxcommons-tools/src/main/java/com/megatim/fdxcommons/tools/integration/dto/ApiIntegrationDataDto.java b/fdx-commons/fdxcommons-tools/src/main/java/com/megatim/fdxcommons/tools/integration/dto/ApiIntegrationDataDto.java
new file mode 100644
index 0000000..ad35d70
--- /dev/null
+++ b/fdx-commons/fdxcommons-tools/src/main/java/com/megatim/fdxcommons/tools/integration/dto/ApiIntegrationDataDto.java
@@ -0,0 +1,71 @@
+/*
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
+ */
+package com.megatim.fdxcommons.tools.integration.dto;
+
+import java.time.LocalDateTime;
+import java.util.LinkedHashMap;
+import java.util.List;
+
+/**
+ *
+ * @author ASUS
+ */
+public class ApiIntegrationDataDto {
+
+    private List<LinkedHashMap<String, Object>> data;
+    private String codeTypeFichier;
+    private String referentielVersion;
+    private String fileName;
+    private LocalDateTime fileDate;
+
+    public ApiIntegrationDataDto(List<LinkedHashMap<String, Object>> data, String codeTypeFichier, String referentielVersion, String fileName, LocalDateTime fileDate) {
+        this.data = data;
+        this.codeTypeFichier = codeTypeFichier;
+        this.referentielVersion = referentielVersion;
+        this.fileName = fileName;
+        this.fileDate = fileDate;
+    }
+
+    public List<LinkedHashMap<String, Object>> getData() {
+        return data;
+    }
+
+    public void setData(List<LinkedHashMap<String, Object>> data) {
+        this.data = data;
+    }
+
+    public String getCodeTypeFichier() {
+        return codeTypeFichier;
+    }
+
+    public void setCodeTypeFichier(String codeTypeFichier) {
+        this.codeTypeFichier = codeTypeFichier;
+    }
+
+    public String getReferentielVersion() {
+        return referentielVersion;
+    }
+
+    public void setReferentielVersion(String referentielVersion) {
+        this.referentielVersion = referentielVersion;
+    }
+
+    public String getFileName() {
+        return fileName;
+    }
+
+    public void setFileName(String fileName) {
+        this.fileName = fileName;
+    }
+
+    public LocalDateTime getFileDate() {
+        return fileDate;
+    }
+
+    public void setFileDate(LocalDateTime fileDate) {
+        this.fileDate = fileDate;
+    }
+
+}

--
Gitblit v1.10.0