Gestion des barem

This commit is contained in:
2026-03-09 19:51:40 +01:00
parent eba53a42aa
commit a799764d16

View File

@@ -0,0 +1,29 @@
package io.gmss.fiscad.paylaods.request.crudweb;
import lombok.Data;
import lombok.NoArgsConstructor;
@NoArgsConstructor
@Data
public class ArrondissementPaylaodWeb {
private Long id;
private String code;
private String nom;
private Long communeId;
private String communeCode;
private String communeNom;
public ArrondissementPaylaodWeb(Long id,
String code,
String nom,
Long communeId,
String communeCode,
String communeNom) {
this.id = id;
this.code = code;
this.nom = nom;
this.communeId = communeId;
this.communeCode = communeCode;
this.communeNom = communeNom;
}
}