package com.megatim.fdxcommons.model.dtos.referentiel;
|
|
import com.megatim.reporting.adhoc.annotations.PrintColumn;
|
import java.time.LocalDateTime;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public class RoutageDto {
|
|
private String code;
|
|
@PrintColumn(libelle = "DATE CREATION", rang = 3)
|
private LocalDateTime dateCreation;
|
|
@PrintColumn(libelle = "DATE DERN. MISE A JOUR", rang = 4)
|
private LocalDateTime dateMiseAjour;
|
|
@PrintColumn(libelle = "CREE PAR", rang = 5)
|
private String createBy;
|
|
@PrintColumn(libelle = "MODIFIE PAR", rang = 6)
|
private String lastModifiedBy;
|
|
private TypeFichierSlimDto typeFichier;
|
|
private ReferentielSlimDto referentiel;
|
|
// private List<NoeudSlimDto> noeudsEnvoi = new ArrayList<>();
|
//
|
// private List<GroupeNoeudSlimDto> groupeNoeudsEnvoi = new ArrayList<>();
|
//
|
// private List<ParticipantSlimDto> participantsEnvoi = new ArrayList<>();
|
//
|
// private List<GroupeParticipantSlimDto> groupeParticipantsEnvoi = new ArrayList<>();
|
//
|
// private List<NoeudSlimDto> noeudsReception = new ArrayList<>();
|
//
|
// private List<GroupeNoeudSlimDto> groupeNoeudsReception = new ArrayList<>();
|
//
|
// private List<ParticipantSlimDto> participantsReception = new ArrayList<>();
|
//
|
// private List<GroupeParticipantSlimDto> groupeParticipantsReception = new ArrayList<>();
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getCode() {
|
return this.code;
|
}
|
|
public LocalDateTime getDateCreation() {
|
return dateCreation;
|
}
|
|
public void setDateCreation(LocalDateTime dateCreation) {
|
this.dateCreation = dateCreation;
|
}
|
|
public LocalDateTime getDateMiseAjour() {
|
return dateMiseAjour;
|
}
|
|
public void setDateMiseAjour(LocalDateTime dateMiseAjour) {
|
this.dateMiseAjour = dateMiseAjour;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public String getLastModifiedBy() {
|
return lastModifiedBy;
|
}
|
|
public void setLastModifiedBy(String lastModifiedBy) {
|
this.lastModifiedBy = lastModifiedBy;
|
}
|
|
public TypeFichierSlimDto getTypeFichier() {
|
return typeFichier;
|
}
|
|
public void setTypeFichier(TypeFichierSlimDto typeFichier) {
|
this.typeFichier = typeFichier;
|
}
|
|
public ReferentielSlimDto getReferentiel() {
|
return referentiel;
|
}
|
|
public void setReferentiel(ReferentielSlimDto referentiel) {
|
this.referentiel = referentiel;
|
}
|
|
@PrintColumn(libelle = "TypeFichier", rang = 1)
|
public String getTypeFichierDescription() {
|
return typeFichier.getLibelle();
|
}
|
|
@PrintColumn(libelle = "Référentiel", rang = 2)
|
public String getReferentielVersion() {
|
return referentiel.getVersion();
|
}
|
}
|