fixes bug#16864

dev: Lucas Silvério
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@98985 d1611594-4594-4d17-8e1d-87c2c4800839
master
fabio 2019-11-22 15:31:05 +00:00
parent d9ee758715
commit 7b1b9c1a82
6 changed files with 58 additions and 1 deletions

View File

@ -3,6 +3,7 @@
<name>modelWeb</name> <name>modelWeb</name>
<comment></comment> <comment></comment>
<projects> <projects>
<project>GeneradorBoletosCNAB</project>
</projects> </projects>
<buildSpec> <buildSpec>
<buildCommand> <buildCommand>
@ -35,8 +36,14 @@
<arguments> <arguments>
</arguments> </arguments>
</buildCommand> </buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec> </buildSpec>
<natures> <natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature> <nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature> <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.jdt.core.javanature</nature>

View File

@ -4,6 +4,8 @@ org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6 org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.6 org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16

View File

@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1

View File

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0"> <?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="modelWeb"> <wb-module deploy-name="modelWeb">
<wb-resource deploy-path="/" source-path="/src"/> <wb-resource deploy-path="/" source-path="/src"/>
<dependent-module archiveName="GeneradorBoletosCNAB.jar" deploy-path="/" handle="module:/resource/GeneradorBoletosCNAB/GeneradorBoletosCNAB">
<dependency-type>uses</dependency-type>
</dependent-module>
</wb-module> </wb-module>
</project-modules> </project-modules>

View File

@ -0,0 +1,2 @@
disabled=06target
eclipse.preferences.version=1

View File

@ -32,7 +32,10 @@ public class FechamentoParamgeral implements java.io.Serializable {
private Integer boletoDiasVenc; private Integer boletoDiasVenc;
private String codConvenio; private String codConvenio;
private String boletoBancoInstrucao; private String boletoBancoInstrucao;
private String boletoBancoInstrucao2;
private String boletoBancoInstrucao3;
private String boletoBancoInstrucaoSacado;
private Long countRemessa;
private Date fecmodif; private Date fecmodif;
private Integer usuarioId; private Integer usuarioId;
@ -198,6 +201,42 @@ public class FechamentoParamgeral implements java.io.Serializable {
this.boletoBancoInstrucao = boletoBancoInstrucao; this.boletoBancoInstrucao = boletoBancoInstrucao;
} }
@Column(name = "BOLETO_BANCO_INSTRUCAO2", precision = 255)
public String getBoletoBancoInstrucao2() {
return boletoBancoInstrucao2;
}
public void setBoletoBancoInstrucao2(String boletoBancoInstrucao2) {
this.boletoBancoInstrucao2 = boletoBancoInstrucao2;
}
@Column(name = "BOLETO_BANCO_INSTRUCAO3", precision = 255)
public String getBoletoBancoInstrucao3() {
return boletoBancoInstrucao3;
}
public void setBoletoBancoInstrucao3(String boletoBancoInstrucao3) {
this.boletoBancoInstrucao3 = boletoBancoInstrucao3;
}
@Column(name = "BOLETO_BANCO_INSTRUCAO_SACADO", precision = 255)
public String getBoletoBancoInstrucaoSacado() {
return boletoBancoInstrucaoSacado;
}
public void setBoletoBancoInstrucaoSacado(String boletoBancoInstrucaoSacado) {
this.boletoBancoInstrucaoSacado = boletoBancoInstrucaoSacado;
}
@Column(name = "COUNT_REMESSA", precision = 15, scale = 0)
public Long getCountRemessa() {
return countRemessa;
}
public void setCountRemessa(Long countRemessa) {
this.countRemessa = countRemessa;
}
@Column(name = "ACTIVO", precision = 1, scale = 0) @Column(name = "ACTIVO", precision = 1, scale = 0)
public Boolean getActivo() { public Boolean getActivo() {
return activo; return activo;