teste de block

master
Fabio Faria 2022-10-11 13:52:25 -03:00
parent 12027cf461
commit 8d742a0a2c
2 changed files with 7 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>modelWeb</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<distributionManagement>
<repository>

View File

@ -2,7 +2,12 @@ package com.rjconsultores.ventaboletos.enums;
public enum SituacaoBoleto {
TODAS(-1, "Todas"), ANULADO(31, "Anulado"), DEVOLVIDO(32, "Devolvido"), REMARCADO(23, "Remarcado"), TROCADO(10, "Trocado"), VENDIDO(1, "Vendido");
TODAS(-1, "Todas"),
ANULADO(31, "Anulado"),
DEVOLVIDO(32, "Devolvido"),
REMARCADO(23, "Remarcado"),
TROCADO(10, "Trocado"),
VENDIDO(1, "Vendido");
private String situacao;
private Integer codigo;