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.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();
}
}