Kenmegne
7 days ago 23a46b4be35277e06ec89f48730eeb694e686be8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
}