www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue