32 lines
634 B
Java
32 lines
634 B
Java
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;
|
|
}
|
|
}
|