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,95 @@
|
|||
package it.acxent.art;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
import java.sql.Date;
|
||||
|
||||
public class CaratteristicaArticoloCR extends CRAdapter {
|
||||
private long id_articolo;
|
||||
|
||||
private long id_caratteristica;
|
||||
|
||||
private long valI;
|
||||
|
||||
private String valS;
|
||||
|
||||
private long valSN;
|
||||
|
||||
private Date valD;
|
||||
|
||||
private long id_lista;
|
||||
|
||||
private Lista lista;
|
||||
|
||||
public CaratteristicaArticoloCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public CaratteristicaArticoloCR() {}
|
||||
|
||||
public void setId_articolo(long newId_articolo) {
|
||||
this.id_articolo = newId_articolo;
|
||||
}
|
||||
|
||||
public void setId_caratteristica(long newId_caratteristica) {
|
||||
this.id_caratteristica = newId_caratteristica;
|
||||
}
|
||||
|
||||
public void setValI(long newValI) {
|
||||
this.valI = newValI;
|
||||
}
|
||||
|
||||
public void setValS(String newValS) {
|
||||
this.valS = newValS;
|
||||
}
|
||||
|
||||
public void setValSN(long newValSN) {
|
||||
this.valSN = newValSN;
|
||||
}
|
||||
|
||||
public void setValD(Date newValD) {
|
||||
this.valD = newValD;
|
||||
}
|
||||
|
||||
public void setId_lista(long newId_lista) {
|
||||
this.id_lista = newId_lista;
|
||||
setLista(null);
|
||||
}
|
||||
|
||||
public long getId_articolo() {
|
||||
return this.id_articolo;
|
||||
}
|
||||
|
||||
public long getId_caratteristica() {
|
||||
return this.id_caratteristica;
|
||||
}
|
||||
|
||||
public long getValI() {
|
||||
return this.valI;
|
||||
}
|
||||
|
||||
public String getValS() {
|
||||
return (this.valS == null) ? "" : this.valS;
|
||||
}
|
||||
|
||||
public long getValSN() {
|
||||
return this.valSN;
|
||||
}
|
||||
|
||||
public Date getValD() {
|
||||
return this.valD;
|
||||
}
|
||||
|
||||
public long getId_lista() {
|
||||
return this.id_lista;
|
||||
}
|
||||
|
||||
public void setLista(Lista newLista) {
|
||||
this.lista = newLista;
|
||||
}
|
||||
|
||||
public Lista getLista() {
|
||||
return (Lista)getSecondaryObject(this.lista, Lista.class, new Long(
|
||||
getId_lista()));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue