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/database/tables/FdxTableColumn.java | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/fdx-commons/fdxcommons-tools/src/main/java/com/megatim/fdxcommons/tools/database/tables/FdxTableColumn.java b/fdx-commons/fdxcommons-tools/src/main/java/com/megatim/fdxcommons/tools/database/tables/FdxTableColumn.java
new file mode 100644
index 0000000..d099b95
--- /dev/null
+++ b/fdx-commons/fdxcommons-tools/src/main/java/com/megatim/fdxcommons/tools/database/tables/FdxTableColumn.java
@@ -0,0 +1,36 @@
+package com.megatim.fdxcommons.tools.database.tables;
+
+/**
+ *
+ * @author Gabuntu
+ */
+public class FdxTableColumn {
+
+ private final String name;
+ private final int type;
+ private final int position;
+ private final int size;
+
+ public FdxTableColumn(String name, int type, int position, int size) {
+ this.name = name;
+ this.type = type;
+ this.position = position;
+ this.size = size;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public int getType() {
+ return type;
+ }
+
+ public int getPosition() {
+ return position;
+ }
+
+ public int getSize() {
+ return size;
+ }
+}
--
Gitblit v1.10.0