63 lines
1.4 KiB
Java
63 lines
1.4 KiB
Java
package it.acxent.anag;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
|
|
public class MeseEsclusoCR extends CRAdapter {
|
|
private long id_meseEscluso;
|
|
|
|
private long id_tipoPagamento;
|
|
|
|
private long meseEscluso;
|
|
|
|
private long giornoEscluso;
|
|
|
|
private TipoPagamento tipoPagamento;
|
|
|
|
public MeseEsclusoCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public MeseEsclusoCR() {}
|
|
|
|
public void setId_meseEscluso(long newId_vettore) {
|
|
this.id_meseEscluso = newId_vettore;
|
|
}
|
|
|
|
public long getId_meseEscluso() {
|
|
return this.id_meseEscluso;
|
|
}
|
|
|
|
public long getId_tipoPagamento() {
|
|
return this.id_tipoPagamento;
|
|
}
|
|
|
|
public void setId_tipoPagamento(long id_tipoPagamento) {
|
|
this.id_tipoPagamento = id_tipoPagamento;
|
|
}
|
|
|
|
public long getMeseEscluso() {
|
|
return this.meseEscluso;
|
|
}
|
|
|
|
public void setMeseEscluso(long meseEscluso) {
|
|
this.meseEscluso = meseEscluso;
|
|
}
|
|
|
|
public long getGiornoEscluso() {
|
|
return this.giornoEscluso;
|
|
}
|
|
|
|
public void setGiornoEscluso(long giornoEscluso) {
|
|
this.giornoEscluso = giornoEscluso;
|
|
}
|
|
|
|
public TipoPagamento getTipoPagamento() {
|
|
this.tipoPagamento = (TipoPagamento)getSecondaryObject(this.tipoPagamento, TipoPagamento.class, getId_tipoPagamento());
|
|
return this.tipoPagamento;
|
|
}
|
|
|
|
public void setTipoPagamento(TipoPagamento tipoPagamento) {
|
|
this.tipoPagamento = tipoPagamento;
|
|
}
|
|
}
|