-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mapeamento de novos campos da versão S 1.3
- Loading branch information
Showing
19 changed files
with
226 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
src/esocial-jt-dominio/src/main/java/br/jus/tst/esocial/dominio/folha/DescFolha.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package br.jus.tst.esocial.dominio.folha; | ||
|
||
public class DescFolha { | ||
private byte tpDesc; | ||
private String instFinanc; | ||
private String nrDoc; | ||
private String observacao; | ||
|
||
public byte getTpDesc() { | ||
return tpDesc; | ||
} | ||
|
||
public void setTpDesc(byte tpDesc) { | ||
this.tpDesc = tpDesc; | ||
} | ||
|
||
public String getInstFinanc() { | ||
return instFinanc; | ||
} | ||
|
||
public void setInstFinanc(String instFinanc) { | ||
this.instFinanc = instFinanc; | ||
} | ||
|
||
public String getNrDoc() { | ||
return nrDoc; | ||
} | ||
|
||
public void setNrDoc(String nrDoc) { | ||
this.nrDoc = nrDoc; | ||
} | ||
|
||
public String getObservacao() { | ||
return observacao; | ||
} | ||
|
||
public void setObservacao(String observacao) { | ||
this.observacao = observacao; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/esocial-jt-dominio/src/main/java/br/jus/tst/esocial/dominio/pagamento/PerAnt.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package br.jus.tst.esocial.dominio.pagamento; | ||
|
||
public class PerAnt { | ||
private String perRefAjuste; | ||
private String nrRec1210Orig; | ||
|
||
public String getPerRefAjuste() { | ||
return perRefAjuste; | ||
} | ||
|
||
public void setPerRefAjuste(String perRefAjuste) { | ||
this.perRefAjuste = perRefAjuste; | ||
} | ||
|
||
public String getNrRec1210Orig() { | ||
return nrRec1210Orig; | ||
} | ||
|
||
public void setNrRec1210Orig(String nrRec1210Orig) { | ||
this.nrRec1210Orig = nrRec1210Orig; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...-dominio/src/main/java/br/jus/tst/esocial/dominio/tabela/rubrica/IdeProcessoPisPasep.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package br.jus.tst.esocial.dominio.tabela.rubrica; | ||
|
||
import java.math.BigInteger; | ||
|
||
public class IdeProcessoPisPasep { | ||
private String nrProc; | ||
private BigInteger codSusp; | ||
|
||
public String getNrProc() { | ||
return nrProc; | ||
} | ||
|
||
public void setNrProc(String nrProc) { | ||
this.nrProc = nrProc; | ||
} | ||
|
||
public BigInteger getCodSusp() { | ||
return codSusp; | ||
} | ||
|
||
public void setCodSusp(BigInteger codSusp) { | ||
this.codSusp = codSusp; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.