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/dataproduction/DataProductionDto.java | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 54 insertions(+), 0 deletions(-)
diff --git a/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/dtos/dataproduction/DataProductionDto.java b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/dtos/dataproduction/DataProductionDto.java
new file mode 100644
index 0000000..f4f1b93
--- /dev/null
+++ b/fdx-commons/fdxcommons-model/src/main/java/com/megatim/fdxcommons/model/dtos/dataproduction/DataProductionDto.java
@@ -0,0 +1,54 @@
+package com.megatim.fdxcommons.model.dtos.dataproduction;
+
+import com.megatim.fdxcommons.model.dataproduction.DataProductionType;
+import com.megatim.fdxcommons.model.enumeration.StatutDataProduction;
+import com.megatim.reporting.adhoc.annotations.PrintColumn;
+import java.time.LocalDateTime;
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ *
+ * @author ASUS
+ */
+@Getter
+@Setter
+public class DataProductionDto {
+
+ private Long id;
+
+ @PrintColumn(libelle = "Type du Fichier")
+ private String codeTypeFichier;
+
+ @PrintColumn(libelle = "Participant")
+ private String codeParticipant;
+
+ @PrintColumn(libelle = "Référentiel")
+ private String referentielVersion;
+
+ @PrintColumn(libelle = "Source de la production")
+ private String source;
+
+ @PrintColumn(libelle = "Date de la production")
+ private LocalDateTime dateProduction;
+
+ @PrintColumn(libelle = "Nom du fichier")
+ private String fileName;
+
+ private StatutDataProduction statutDataProduction;
+
+ private LocalDateTime fileDate;
+
+ private DataProductionType dataProductionType;
+
+ private String token;
+
+ private LocalDateTime dateMiseAJour;
+
+ private Long nbreElements;
+
+ private Long tailleFichier;
+
+ private String integrationFileName;
+
+}
--
Gitblit v1.10.0