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 OttoxmilleCR extends CRAdapter {
|
||||
private long id_ottoxmille;
|
||||
|
||||
private String descrizione;
|
||||
|
||||
public OttoxmilleCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public OttoxmilleCR() {}
|
||||
|
||||
public void setId_ottoxmille(long newId_ottoxmille) {
|
||||
this.id_ottoxmille = newId_ottoxmille;
|
||||
}
|
||||
|
||||
public void setDescrizione(String newDescrizione) {
|
||||
this.descrizione = newDescrizione;
|
||||
}
|
||||
|
||||
public long getId_ottoxmille() {
|
||||
return this.id_ottoxmille;
|
||||
}
|
||||
|
||||
public String getDescrizione() {
|
||||
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue