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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.megatim.fdxconsultation.reporting.model.administration;
 
import com.megatim.export.excel.annotations.ExportToExcel;
import com.megatim.reporting.adhoc.annotations.PrintColumn;
import lombok.Getter;
import lombok.Setter;
 
 
/**
 *
 * @author bissey
 */
@Getter
@Setter
public class UserReporting {
    
    private Long id;
   
    @ExportToExcel(entete = "Nom utilisateur", position = 3, width = 60)
    @PrintColumn(libelle = "Nom utilisateur", rang = 3)
    private String userName;
   
    @ExportToExcel(entete = "Prénom (s)", position = 2, width = 60)
    @PrintColumn(libelle = "Prénom (s)", rang = 2)
    private String firstName;
    
    @ExportToExcel(entete = "Nom (s)", position = 1, width = 60)
    @PrintColumn(libelle = "Nom (s)", rang = 1)
    private String lastName;
    
    private int expirationDelay;
    
    private int alertDelay;
    
    private int attempsNumber;
    
    private int attemps;
    
    private boolean locked;
    
    private boolean active;
    
    private boolean connected;
    
    @ExportToExcel(entete = "Statut", position = 4, width = 60)
    @PrintColumn(libelle = "Statut", rang = 4)
    private String etatOperation;
    
    @ExportToExcel(entete = "Groupe utilisateur", position = 5, width = 60)
    @PrintColumn(libelle = "Groupe utilisateur", rang = 5)
    private String role;
    
    @ExportToExcel(entete = "Date création", position = 6, width = 60)
    @PrintColumn(libelle = "Date création", rang = 6)
    private String dateCreation;
    
    @ExportToExcel(entete = "Crée par", position = 7, width = 60)
    @PrintColumn(libelle = "Crée par", rang = 7)
    private String utilisateurCreation;
    
    @ExportToExcel(entete = "Date Dern. Mod.", position = 8, width = 60)
    @PrintColumn(libelle = "Date Dern. Mod.", rang = 8)
    private String dateDerniereModification;
    
    @ExportToExcel(entete = "Modifié par", position = 9, width = 60)
    @PrintColumn(libelle = "Modifié par", rang = 9)
    private String utilisateurModification;
    
}