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,30 @@
|
|||
package it.acxent.tex.json;
|
||||
|
||||
public class JFondi {
|
||||
private long id_fondo;
|
||||
|
||||
private String descrizione;
|
||||
|
||||
public JFondi(long id_fondo, String descrizione) {
|
||||
this.id_fondo = id_fondo;
|
||||
this.descrizione = descrizione;
|
||||
}
|
||||
|
||||
public JFondi() {}
|
||||
|
||||
public long getId_fondo() {
|
||||
return this.id_fondo;
|
||||
}
|
||||
|
||||
public void setId_fondo(long id_fondo) {
|
||||
this.id_fondo = id_fondo;
|
||||
}
|
||||
|
||||
public String getDescrizione() {
|
||||
return (this.descrizione == null) ? "" : this.descrizione;
|
||||
}
|
||||
|
||||
public void setDescrizione(String descrizione) {
|
||||
this.descrizione = descrizione;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue