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.art;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class StatoUsatoCR extends CRAdapter {
|
||||
private long id_statoUsato;
|
||||
|
||||
private String sigla;
|
||||
|
||||
public StatoUsatoCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public StatoUsatoCR() {}
|
||||
|
||||
public void setId_statoUsato(long newId_statoUsato) {
|
||||
this.id_statoUsato = newId_statoUsato;
|
||||
}
|
||||
|
||||
public void setSigla(String newSigla) {
|
||||
this.sigla = newSigla;
|
||||
}
|
||||
|
||||
public long getId_statoUsato() {
|
||||
return this.id_statoUsato;
|
||||
}
|
||||
|
||||
public String getSigla() {
|
||||
return (this.sigla == null) ? "" : this.sigla.trim();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue