32 lines
772 B
Java
32 lines
772 B
Java
package it.acxent.anag;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
|
|
public class CausaleTrasportoCR extends CRAdapter {
|
|
private long id_causaleTrasporto;
|
|
|
|
private String descrizione;
|
|
|
|
public CausaleTrasportoCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public CausaleTrasportoCR() {}
|
|
|
|
public void setId_causaleTrasporto(long newId_causaleMagazzino) {
|
|
this.id_causaleTrasporto = newId_causaleMagazzino;
|
|
}
|
|
|
|
public void setDescrizione(String newDescrizione) {
|
|
this.descrizione = newDescrizione;
|
|
}
|
|
|
|
public long getId_causaleTrasporto() {
|
|
return this.id_causaleTrasporto;
|
|
}
|
|
|
|
public String getDescrizione() {
|
|
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
|
}
|
|
}
|