77 lines
1.9 KiB
Java
77 lines
1.9 KiB
Java
|
|
package it.acxent.contab;
|
||
|
|
|
||
|
|
import it.acxent.db.ApplParmFull;
|
||
|
|
import it.acxent.db.CRAdapter;
|
||
|
|
import java.io.Serializable;
|
||
|
|
import java.sql.Date;
|
||
|
|
|
||
|
|
public class MovContabileCR extends CRAdapter implements Serializable {
|
||
|
|
private static final long serialVersionUID = 1120016389762829114L;
|
||
|
|
|
||
|
|
private long id_movContabile;
|
||
|
|
|
||
|
|
private String descrizione;
|
||
|
|
|
||
|
|
private long id_causaleContabile;
|
||
|
|
|
||
|
|
private Date dataMovContabile;
|
||
|
|
|
||
|
|
private long flgStato;
|
||
|
|
|
||
|
|
private CausaleContabile causaleContabile;
|
||
|
|
|
||
|
|
public MovContabileCR(ApplParmFull newApplParmFull) {
|
||
|
|
super(newApplParmFull);
|
||
|
|
}
|
||
|
|
|
||
|
|
public MovContabileCR() {}
|
||
|
|
|
||
|
|
public long getId_movContabile() {
|
||
|
|
return this.id_movContabile;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId_movContabile(long id_incassoPagamento) {
|
||
|
|
this.id_movContabile = id_incassoPagamento;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDescrizione() {
|
||
|
|
return (this.descrizione == null) ? "" : this.descrizione;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDescrizione(String descrizione) {
|
||
|
|
this.descrizione = descrizione;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getId_causaleContabile() {
|
||
|
|
return this.id_causaleContabile;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId_causaleContabile(long id_causaleContabile) {
|
||
|
|
this.id_causaleContabile = id_causaleContabile;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getDataMovContabile() {
|
||
|
|
return this.dataMovContabile;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDataMovContabile(Date dataMovContabile) {
|
||
|
|
this.dataMovContabile = dataMovContabile;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getFlgStato() {
|
||
|
|
return this.flgStato;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setFlgStato(long flgStato) {
|
||
|
|
this.flgStato = flgStato;
|
||
|
|
}
|
||
|
|
|
||
|
|
public CausaleContabile getCausaleContabile() {
|
||
|
|
this.causaleContabile = (CausaleContabile)getSecondaryObject(this.causaleContabile, CausaleContabile.class, getId_causaleContabile());
|
||
|
|
return this.causaleContabile;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCausaleContabile(CausaleContabile causaleContabile) {
|
||
|
|
this.causaleContabile = causaleContabile;
|
||
|
|
}
|
||
|
|
}
|