132 lines
2.7 KiB
Java
132 lines
2.7 KiB
Java
|
|
package it.acxent.bank.sellaPCredit;
|
||
|
|
|
||
|
|
import it.acxent.db.ApplParmFull;
|
||
|
|
import it.acxent.db.CRAdapter;
|
||
|
|
|
||
|
|
public class ConselTabfinCR extends CRAdapter {
|
||
|
|
private long id_conselTabfin;
|
||
|
|
|
||
|
|
private String flgTipo;
|
||
|
|
|
||
|
|
private double valoreBene;
|
||
|
|
|
||
|
|
private long durata;
|
||
|
|
|
||
|
|
private double importoRata;
|
||
|
|
|
||
|
|
private double tan;
|
||
|
|
|
||
|
|
private double taeg;
|
||
|
|
|
||
|
|
private double interessi;
|
||
|
|
|
||
|
|
private double speseGestSingolaRata;
|
||
|
|
|
||
|
|
private double speseGestTotaleRata;
|
||
|
|
|
||
|
|
private double impostaBollo;
|
||
|
|
|
||
|
|
private double importoTotaleDovuto;
|
||
|
|
|
||
|
|
public ConselTabfinCR(ApplParmFull newApplParmFull) {
|
||
|
|
super(newApplParmFull);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ConselTabfinCR() {}
|
||
|
|
|
||
|
|
public void setId_conselTabfin(long newId_conselTabfin) {
|
||
|
|
this.id_conselTabfin = newId_conselTabfin;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setFlgTipo(String newFlgTipo) {
|
||
|
|
this.flgTipo = newFlgTipo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setValoreBene(double newValoreBene) {
|
||
|
|
this.valoreBene = newValoreBene;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDurata(long newDurata) {
|
||
|
|
this.durata = newDurata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setImportoRata(double newImportoRata) {
|
||
|
|
this.importoRata = newImportoRata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTan(double newTan) {
|
||
|
|
this.tan = newTan;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTaeg(double newTaeg) {
|
||
|
|
this.taeg = newTaeg;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setInteressi(double newInteressi) {
|
||
|
|
this.interessi = newInteressi;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSpeseGestSingolaRata(double newSpeseGestSingolaRata) {
|
||
|
|
this.speseGestSingolaRata = newSpeseGestSingolaRata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setSpeseGestTotaleRata(double newSpeseGestTotaleRata) {
|
||
|
|
this.speseGestTotaleRata = newSpeseGestTotaleRata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setImpostaBollo(double newImpostaBollo) {
|
||
|
|
this.impostaBollo = newImpostaBollo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setImportoTotaleDovuto(double newImportoTotaleDovuto) {
|
||
|
|
this.importoTotaleDovuto = newImportoTotaleDovuto;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getId_conselTabfin() {
|
||
|
|
return this.id_conselTabfin;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getFlgTipo() {
|
||
|
|
return (this.flgTipo == null) ? "" : this.flgTipo.trim();
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getValoreBene() {
|
||
|
|
return this.valoreBene;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getDurata() {
|
||
|
|
return this.durata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getImportoRata() {
|
||
|
|
return this.importoRata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getTan() {
|
||
|
|
return this.tan;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getTaeg() {
|
||
|
|
return this.taeg;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getInteressi() {
|
||
|
|
return this.interessi;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getSpeseGestSingolaRata() {
|
||
|
|
return this.speseGestSingolaRata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getSpeseGestTotaleRata() {
|
||
|
|
return this.speseGestTotaleRata;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getImpostaBollo() {
|
||
|
|
return this.impostaBollo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public double getImportoTotaleDovuto() {
|
||
|
|
return this.importoTotaleDovuto;
|
||
|
|
}
|
||
|
|
}
|