package com.megatim.fdxconsultation.model.dto.log;
|
|
import com.megatim.reporting.adhoc.annotations.PrintColumn;
|
import java.time.LocalDateTime;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
@Getter
|
@Setter
|
public class UserActionLogDto {
|
|
private Long id;
|
|
@PrintColumn(libelle = "Message", rang = 3)
|
private String message;
|
|
@PrintColumn(libelle = "Nom de l'utilisateur", rang = 1)
|
private String userName;
|
|
@PrintColumn(libelle = "Date de l'action", rang = 2)
|
private LocalDateTime dateAction;
|
|
@PrintColumn(libelle = "Adresse IP source", rang = 4)
|
private String ipAddress;
|
|
@PrintColumn(libelle = "Statut de l'action", rang = 5)
|
private int status;
|
|
private String httpMethod;
|
}
|