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
/*
 * 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.api.token;
 
 
 
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 ApiTokenReporting {
 
    private Long id;
 
    @ExportToExcel(entete = "Participant", position = 1, width = 60)
    @PrintColumn(libelle = "Participant", rang = 1)
    private String participant;
 
    @ExportToExcel(entete = "Statut", position = 1, width = 60)
    @PrintColumn(libelle = "Statut", rang = 2)
    private String apiTokenStatut;
    
    @ExportToExcel(entete = "Date première génération", position = 3, width = 60)
    @PrintColumn(libelle = "Date première génération", rang = 3)
    private String dateCreation;
 
    @ExportToExcel(entete = "Généré par", position = 4, width = 60)
    @PrintColumn(libelle = "Généré par", rang = 4)
    private String utilisateurCreation;
 
    @ExportToExcel(entete = "Date dernière regén.", position = 5, width = 60)
    @PrintColumn(libelle = "Date dernière regén.", rang = 5)
    private String dateDerniereModification;
 
    @ExportToExcel(entete = "Regénéré par", position = 6, width = 60)
    @PrintColumn(libelle = "Regénéré par", rang = 6)
    private String utilisateurModification;
 
    private String dateSuppression;
 
    private String utilisateurSuppression;
    
}