feat: AffiliationCard

This commit is contained in:
2024-07-14 15:00:28 +02:00
parent 6a21bd4735
commit b2438ec3d8
10 changed files with 99 additions and 102 deletions

View File

@@ -14,8 +14,8 @@ public class AffiliationRequestForm {
@FormParam("name")
private String name = null;
@FormParam("siren")
private Long siren = null;
@FormParam("siret")
private Long siret = null;
@FormParam("rna")
private String rna = null;
@@ -67,7 +67,7 @@ public class AffiliationRequestForm {
public AffiliationRequestModel toModel() {
AffiliationRequestModel model = new AffiliationRequestModel();
model.setName(this.getName());
model.setSiren(this.getSiren());
model.setSiret(this.getSiret());
model.setRNA(this.getRna());
model.setAddress(this.getAdresse());