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,56 @@
|
|||
package it.acxent.art;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class AccessorioCR extends CRAdapter {
|
||||
private long id_accessorio;
|
||||
|
||||
private long id_articolo;
|
||||
|
||||
private long flgTipo;
|
||||
|
||||
private Articolo articolo;
|
||||
|
||||
public AccessorioCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public AccessorioCR() {}
|
||||
|
||||
public void setId_accessorio(long newId_accessorio) {
|
||||
this.id_accessorio = newId_accessorio;
|
||||
}
|
||||
|
||||
public void setId_articolo(long newId_articolo) {
|
||||
this.id_articolo = newId_articolo;
|
||||
setArticolo(null);
|
||||
}
|
||||
|
||||
public void setFlgTipo(long newFlgTipo) {
|
||||
this.flgTipo = newFlgTipo;
|
||||
}
|
||||
|
||||
public long getId_accessorio() {
|
||||
return this.id_accessorio;
|
||||
}
|
||||
|
||||
public long getId_articolo() {
|
||||
return this.id_articolo;
|
||||
}
|
||||
|
||||
public long getFlgTipo() {
|
||||
return this.flgTipo;
|
||||
}
|
||||
|
||||
public void setArticolo(Articolo newArticolo) {
|
||||
this.articolo = newArticolo;
|
||||
}
|
||||
|
||||
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