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-model/src/main/java/com/megatim/fdxconsultation/model/dto/ActionDto.java | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 109 insertions(+), 0 deletions(-)
diff --git a/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/ActionDto.java b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/ActionDto.java
new file mode 100644
index 0000000..195dae8
--- /dev/null
+++ b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/ActionDto.java
@@ -0,0 +1,109 @@
+/*
+ * 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.model.dto;
+
+
+import com.megatim.fdxcommons.model.enumeration.TypeOperation;
+
+/**
+ *
+ * @author bissey
+ */
+public class ActionDto {
+
+ private Long id;
+
+ private String path;
+
+ private String module;
+
+ private String name;
+
+ private String categorie;
+
+ private String description;
+
+ private Boolean autorise;
+
+ protected String idGenerer;
+
+ private TypeOperation typeOperation;
+
+ public ActionDto() {
+ }
+
+ public Long getId() {
+ return id;
+ }
+
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ public String getPath() {
+ return path;
+ }
+
+ public void setPath(String path) {
+ this.path = path;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getIdGenerer() {
+ return idGenerer;
+ }
+
+ public void setIdGenerer(String idGenerer) {
+ this.idGenerer = idGenerer;
+ }
+
+ public TypeOperation getTypeOperation() {
+ return typeOperation;
+ }
+
+ public void setTypeOperation(TypeOperation typeOperation) {
+ this.typeOperation = typeOperation;
+ }
+
+ public Boolean getAutorise() {
+ return autorise;
+ }
+
+ public void setAutorise(Boolean autorise) {
+ this.autorise = autorise;
+ }
+
+ public String getModule() {
+ return module;
+ }
+
+ public void setModule(String module) {
+ this.module = module;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+
+ public String getCategorie() {
+ return categorie;
+ }
+
+ public void setCategorie(String categorie) {
+ this.categorie = categorie;
+ }
+}
--
Gitblit v1.10.0