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,40 @@
|
|||
package it.acxent.art;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class ArticoloArticoloComponenteCR extends CRAdapter {
|
||||
private long id_articoloComponente;
|
||||
|
||||
private long id_articolo;
|
||||
|
||||
private Articolo articolo;
|
||||
|
||||
public ArticoloArticoloComponenteCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public ArticoloArticoloComponenteCR() {}
|
||||
|
||||
public long getId_articoloComponente() {
|
||||
return this.id_articoloComponente;
|
||||
}
|
||||
|
||||
public void setId_articoloComponente(long id_articoloComponente) {
|
||||
this.id_articoloComponente = id_articoloComponente;
|
||||
}
|
||||
|
||||
public long getId_articolo() {
|
||||
return this.id_articolo;
|
||||
}
|
||||
|
||||
public void setId_articolo(long id_articolo) {
|
||||
this.id_articolo = id_articolo;
|
||||
}
|
||||
|
||||
public Articolo getArticolo() {
|
||||
this.articolo = (Articolo)getSecondaryObject(this.articolo, Articolo.class,
|
||||
getId_articolo());
|
||||
return this.articolo;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue