SystemeExploitationDTO.java

package com.sintia.ffl.admin.audio.services.dto;

import com.sintia.ffl.core.commons.dto.FFLDTO;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.time.LocalDateTime;

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SystemeExploitationDTO implements FFLDTO {
	
	private Integer identifiantSystemeExploitation;
	
	private String codeSystemeExploitation;
	
	private String libelleSystemeExploitation;
	
	private LocalDateTime dateSystemeSystemeExploitation;
	
}