package com.megatim.fdxcommons.model.dtos.referentiel;
|
|
import com.megatim.reporting.adhoc.annotations.PrintColumn;
|
import java.time.LocalDateTime;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public class RoutageSlimDto {
|
|
@PrintColumn(libelle = "Code", rang = 1)
|
private String code;
|
|
private LocalDateTime dateCreation;
|
|
private LocalDateTime dateMiseAjour;
|
|
private String createBy;
|
|
private String lastModifiedBy;
|
|
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;
|
}
|
}
|