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-reporting/src/main/java/com/megatim/fdxconsultation/reporting/model/referentiel/PaysReporting.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 51 insertions(+), 0 deletions(-)
diff --git a/fdx-consultation/fdxconsultation-reporting/src/main/java/com/megatim/fdxconsultation/reporting/model/referentiel/PaysReporting.java b/fdx-consultation/fdxconsultation-reporting/src/main/java/com/megatim/fdxconsultation/reporting/model/referentiel/PaysReporting.java
new file mode 100644
index 0000000..f6e00d7
--- /dev/null
+++ b/fdx-consultation/fdxconsultation-reporting/src/main/java/com/megatim/fdxconsultation/reporting/model/referentiel/PaysReporting.java
@@ -0,0 +1,51 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package com.megatim.fdxconsultation.reporting.model.referentiel;
+
+import com.megatim.export.excel.annotations.ExportToExcel;
+import com.megatim.reporting.adhoc.annotations.PrintColumn;
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ *
+ * @author bissey
+ */
+@Getter
+@Setter
+public class PaysReporting {
+
+ private Long id;
+
+ @ExportToExcel(entete = "Code", position = 1, width = 60)
+ @PrintColumn(libelle = "Code", rang = 1, width = 100)
+ private String code;
+
+ @ExportToExcel(entete = "Libellé", position = 2, width = 60)
+ @PrintColumn(libelle = "Libellé", rang = 2)
+ private String libelle;
+
+ @ExportToExcel(entete = "Référentiel", position = 3, width = 60)
+ @PrintColumn(libelle = "Référentiel", rang = 3, width = 100)
+ private String referentiel;
+
+ @ExportToExcel(entete = "Date création", position = 4, width = 60)
+ @PrintColumn(libelle = "Date création", rang = 4)
+ private String dateCreation;
+
+ @ExportToExcel(entete = "Crée par", position = 5, width = 60)
+ @PrintColumn(libelle = "Crée par", rang = 5)
+ private String utilisateurCreation;
+
+ @ExportToExcel(entete = "Date Dern. Mod.", position = 6, width = 60)
+ @PrintColumn(libelle = "Date Dern. Mod.", rang = 6)
+ private String dateDerniereModification;
+
+ @ExportToExcel(entete = "Modifié par", position = 7, width = 60)
+ @PrintColumn(libelle = "Modifié par", rang = 7)
+ private String utilisateurModification;
+
+}
--
Gitblit v1.10.0