/*
|
* 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;
|
|
}
|