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,32 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue