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,32 @@
package it.acxent.anag;
import it.acxent.db.ApplParmFull;
import it.acxent.db.CRAdapter;
public class EsercizioCR extends CRAdapter {
private long id_esercizio;
private long flgStato;
public EsercizioCR(ApplParmFull newApplParmFull) {
super(newApplParmFull);
}
public EsercizioCR() {}
public void setId_esercizio(long newId_esercizio) {
this.id_esercizio = newId_esercizio;
}
public void setFlgStato(long newFlgStato) {
this.flgStato = newFlgStato;
}
public long getId_esercizio() {
return this.id_esercizio;
}
public long getFlgStato() {
return this.flgStato;
}
}