features/crud_entites #144
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user