ProfessionnelSanteDTO.java
package com.sintia.ffl.admin.audio.services.dto;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import org.springframework.security.core.userdetails.User;
import java.util.ArrayList;
@Getter
@Setter
@ToString
@EqualsAndHashCode(callSuper = true)
public class ProfessionnelSanteDTO extends User {
private String code;
private String libelle;
private String professionProfessionnelSante;
private String numeroProfessionnelSante;
private String detailProfessionnelSante;
private String nomProfessionnelSante;
private String prenomProfessionnelSante;
private String adresseProfessionnelSante1;
private String adresseProfessionnelSante2;
private String codePostalProfessionnelSante;
private String villeProfessionnelSante;
private String telephoneProfessionnelSante;
private String identiteSIRETProfessionnelSante;
private String identiteADELIProfessionnelSante;
private String etatProfessionnelSante;
private String username;
private String password;
public ProfessionnelSanteDTO(String username, String password) {
super(username, password, new ArrayList<>());
}
}