www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,63 @@
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;
}
}