32 lines
922 B
Java
32 lines
922 B
Java
package it.acxent.contab;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class RigaDocumentoPKey implements Serializable {
|
|
private static final long serialVersionUID = -1567073687136477415L;
|
|
|
|
private long id_rigaDocumento;
|
|
|
|
private long id_rigaDocumentoPrelevata;
|
|
|
|
public RigaDocumentoPKey(long newId_rigaDocumento, long newId_rigaDocumentoPrelevata) {
|
|
setId_rigaDocumento(newId_rigaDocumento);
|
|
setId_rigaDocumentoPrelevata(newId_rigaDocumentoPrelevata);
|
|
}
|
|
|
|
public void setId_rigaDocumento(long newId_rigaDocumento) {
|
|
this.id_rigaDocumento = newId_rigaDocumento;
|
|
}
|
|
|
|
public void setId_rigaDocumentoPrelevata(long newId_rigaDocumentoPrelevata) {
|
|
this.id_rigaDocumentoPrelevata = newId_rigaDocumentoPrelevata;
|
|
}
|
|
|
|
public long getId_rigaDocumento() {
|
|
return this.id_rigaDocumento;
|
|
}
|
|
|
|
public long getId_rigaDocumentoPrelevata() {
|
|
return this.id_rigaDocumentoPrelevata;
|
|
}
|
|
}
|