32 lines
616 B
Java
32 lines
616 B
Java
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;
|
|
}
|
|
}
|