• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wmixvideo / nfe / #7148

04 Dec 2025 02:00PM UTC coverage: 52.281% (+25.3%) from 26.996%
#7148

push

web-flow
Ajuste conforme CTe_Nota_Tecnica_2025_001_RTC_v1.10 (#1126)

* Merge from master

* Revert "Merge from master"

This reverts commit e2ed141c3.

* Revert "Revert "Merge from master""

This reverts commit 05781623b.

* Adição do campo indDoacao e grupo de informações de estorno de crédito. Exclusão do grupo de informações do crédito presumido por não se aplicar aos cClassTrib associados ao CTe. Conforme CTe_Nota_Tecnica_2025_001_RTC_v1.10.

103 of 276 new or added lines in 17 files covered. (37.32%)

2968 existing lines in 404 files now uncovered.

14761 of 28234 relevant lines covered (52.28%)

0.52 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/evento/MDFeInfoEventoRetorno.java
1
package com.fincatto.documentofiscal.mdfe3.classes.nota.evento;
2

3
import java.time.ZonedDateTime;
4

5
import org.simpleframework.xml.Attribute;
6
import org.simpleframework.xml.Element;
7

8
import com.fincatto.documentofiscal.DFAmbiente;
9
import com.fincatto.documentofiscal.DFBase;
10
import com.fincatto.documentofiscal.DFUnidadeFederativa;
11

UNCOV
12
public class MDFeInfoEventoRetorno extends DFBase {
×
13
    private static final long serialVersionUID = -2115809978508728897L;
14

15
    @Attribute(name = "Id", required = false)
16
    private String id;
17

18
    @Element(name = "verEvento", required = false)
19
    private String versaoEvento;
20

21
    @Element(name = "tpAmb")
22
    private DFAmbiente ambiente;
23

24
    @Element(name = "verAplic")
25
    private String versaoAplicativo;
26

27
    @Element(name = "cOrgao")
28
    private DFUnidadeFederativa orgao;
29

30
    @Element(name = "cStat")
31
    private Integer codigoStatus;
32

33
    @Element(name = "xMotivo")
34
    private String motivo;
35

36
    @Element(name = "chMDFe", required = false)
37
    private String chave;
38

39
    @Element(name = "tpEvento", required = false)
40
    private String tipoEvento;
41

42
    @Element(name = "xEvento", required = false)
43
    private String descricaoEvento;
44

45
    @Element(name = "nSeqEvento", required = false)
46
    private Integer numeroSequencialEvento;
47

48
    @Element(name = "dhRegEvento", required = false)
49
    private ZonedDateTime dataHoraRegistro;
50

51
    @Element(name = "nProt", required = false)
52
    private String numeroProtocolo;
53

54
    public String getId() {
UNCOV
55
        return this.id;
×
56
    }
57

58
    public void setId(final String id) {
UNCOV
59
        this.id = id;
×
60
    }
×
61

62
    public DFAmbiente getAmbiente() {
UNCOV
63
        return this.ambiente;
×
64
    }
65

66
    public void setAmbiente(final DFAmbiente ambiente) {
UNCOV
67
        this.ambiente = ambiente;
×
68
    }
×
69

70
    public String getVersaoAplicativo() {
UNCOV
71
        return this.versaoAplicativo;
×
72
    }
73

74
    public void setVersaoAplicativo(final String versaoAplicativo) {
UNCOV
75
        this.versaoAplicativo = versaoAplicativo;
×
76
    }
×
77

78
    public DFUnidadeFederativa getOrgao() {
UNCOV
79
        return this.orgao;
×
80
    }
81

82
    public void setOrgao(final DFUnidadeFederativa orgao) {
UNCOV
83
        this.orgao = orgao;
×
84
    }
×
85

86
    public Integer getCodigoStatus() {
UNCOV
87
        return this.codigoStatus;
×
88
    }
89

90
    public void setCodigoStatus(final Integer codigoStatus) {
UNCOV
91
        this.codigoStatus = codigoStatus;
×
92
    }
×
93

94
    public String getMotivo() {
UNCOV
95
        return this.motivo;
×
96
    }
97

98
    public void setMotivo(final String motivo) {
UNCOV
99
        this.motivo = motivo;
×
100
    }
×
101

102
    public String getChave() {
UNCOV
103
        return this.chave;
×
104
    }
105

106
    public void setChave(final String chave) {
UNCOV
107
        this.chave = chave;
×
108
    }
×
109

110
    public String getTipoEvento() {
UNCOV
111
        return this.tipoEvento;
×
112
    }
113

114
    public void setTipoEvento(final String tipoEvento) {
UNCOV
115
        this.tipoEvento = tipoEvento;
×
116
    }
×
117

118
    public String getDescricaoEvento() {
UNCOV
119
        return this.descricaoEvento;
×
120
    }
121

122
    public void setDescricaoEvento(final String descricaoEvento) {
UNCOV
123
        this.descricaoEvento = descricaoEvento;
×
124
    }
×
125

126
    public Integer getNumeroSequencialEvento() {
UNCOV
127
        return this.numeroSequencialEvento;
×
128
    }
129

130
    public void setNumeroSequencialEvento(final Integer numeroSequencialEvento) {
UNCOV
131
        this.numeroSequencialEvento = numeroSequencialEvento;
×
132
    }
×
133

134
    public ZonedDateTime getDataHoraRegistro() {
UNCOV
135
        return this.dataHoraRegistro;
×
136
    }
137

138
    public void setDataHoraRegistro(final ZonedDateTime dataHoraRegistro) {
UNCOV
139
        this.dataHoraRegistro = dataHoraRegistro;
×
140
    }
×
141

142
    public String getNumeroProtocolo() {
UNCOV
143
        return this.numeroProtocolo;
×
144
    }
145

146
    public void setNumeroProtocolo(final String numeroProtocolo) {
UNCOV
147
        this.numeroProtocolo = numeroProtocolo;
×
148
    }
×
149

150
    public String getVersaoEvento() {
UNCOV
151
        return this.versaoEvento;
×
152
    }
153

154
    public void setVersaoEvento(final String versaoEvento) {
UNCOV
155
        this.versaoEvento = versaoEvento;
×
UNCOV
156
    }
×
157
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc