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 ComponenteCR extends CRAdapter {
private long id_componente;
private String sigla;
public ComponenteCR(ApplParmFull newApplParmFull) {
super(newApplParmFull);
}
public ComponenteCR() {}
public long getId_componente() {
return this.id_componente;
}
public void setId_componente(long id_componente) {
this.id_componente = id_componente;
}
public String getSigla() {
return this.sigla;
}
public void setSigla(String sigla) {
this.sigla = sigla;
}
}