Blame |
Last modification |
View Log
| Download
| RSS feed
package br.com.ec.domain.model.tipos;
public enum TipoRelatorioSistema
{
NFCE
(1,
"NFCE");
private Integer identificador
;
private String descricao
;
private TipoRelatorioSistema
(Integer identificador,
String descricao
) {
this.
identificador = identificador
;
this.
descricao = descricao
;
}
public int getIdentificador
() {
return identificador
;
}
public String getDescricao
() {
return descricao
;
}
}