30 lines
851 B
Java
30 lines
851 B
Java
|
|
package it.acxent.contab;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
|
||
|
|
public class RigaDocumentoPMKey implements Serializable {
|
||
|
|
private long id_rigaDocumento;
|
||
|
|
|
||
|
|
private long id_rigaDocumentoPrelevata;
|
||
|
|
|
||
|
|
public RigaDocumentoPMKey(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;
|
||
|
|
}
|
||
|
|
}
|