Clean project: remove test files, debug logs, and add documentation

This commit is contained in:
dahoud
2025-10-05 13:41:33 +00:00
parent 96a17eadbd
commit 291847924c
438 changed files with 65754 additions and 32713 deletions

View File

@@ -0,0 +1,14 @@
// Test de diagnostic pour comprendre le problème d'ID
public class DebugTest {
public static void main(String[] args) {
System.out.println("=== Test BaseDTO ===");
BaseDTO base = new BaseDTO() {}; // Classe anonyme pour tester
System.out.println("BaseDTO ID: " + base.getId());
System.out.println("BaseDTO Version: " + base.getVersion());
System.out.println("\n=== Test DemandeAideDTO ===");
DemandeAideDTO demande = new DemandeAideDTO();
System.out.println("DemandeAideDTO ID: " + demande.getId());
System.out.println("DemandeAideDTO Version: " + demande.getVersion());
}
}