NatureAssuranceMaladieDTO.java
package com.sintia.ffl.admin.audio.services.dto;
import com.sintia.ffl.core.commons.dto.FFLDTO;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.time.LocalDateTime;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class NatureAssuranceMaladieDTO implements FFLDTO {
private Integer identifiantNatureAssuranceMaladie;
private byte codeNature;
private String libelleNature;
private short numTauxRemboursement;
private LocalDateTime dateCreation;
private LocalDateTime dateMaj;
private String numTauxRemboursementDentaire;
}