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 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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue