97 lines
2 KiB
Java
97 lines
2 KiB
Java
package it.acxent.face.fr;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
import it.acxent.db.DBAdapter;
|
|
|
|
public class FotoRequestCR extends CRAdapter {
|
|
private long id_fotoRequest;
|
|
|
|
private long id_users;
|
|
|
|
private String md5;
|
|
|
|
private String jsonCompleto;
|
|
|
|
private String jsonNumeri;
|
|
|
|
private String jsonFace;
|
|
|
|
private long nRichieste;
|
|
|
|
private Users users;
|
|
|
|
public FotoRequestCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public FotoRequestCR() {}
|
|
|
|
public void setId_fotoRequest(long newId_fotoRequest) {
|
|
this.id_fotoRequest = newId_fotoRequest;
|
|
}
|
|
|
|
public void setId_users(long newId_users) {
|
|
this.id_users = newId_users;
|
|
setUsers(null);
|
|
}
|
|
|
|
public void setMd5(String newMd5) {
|
|
this.md5 = newMd5;
|
|
}
|
|
|
|
public void setJsonCompleto(String newJsonCompleto) {
|
|
this.jsonCompleto = newJsonCompleto;
|
|
}
|
|
|
|
public void setJsonNumeri(String newJsonNumeri) {
|
|
this.jsonNumeri = newJsonNumeri;
|
|
}
|
|
|
|
public void setJsonFace(String newJsonFace) {
|
|
this.jsonFace = newJsonFace;
|
|
}
|
|
|
|
public void setNRichieste(long newNRichieste) {
|
|
this.nRichieste = newNRichieste;
|
|
}
|
|
|
|
public long getId_fotoRequest() {
|
|
return this.id_fotoRequest;
|
|
}
|
|
|
|
public long getId_users() {
|
|
return this.id_users;
|
|
}
|
|
|
|
public String getMd5() {
|
|
return (this.md5 == null) ? "" : this.md5.trim();
|
|
}
|
|
|
|
public String getJsonCompleto() {
|
|
return (this.jsonCompleto == null) ? "" : this.jsonCompleto.trim();
|
|
}
|
|
|
|
public String getJsonNumeri() {
|
|
return (this.jsonNumeri == null) ? "" : this.jsonNumeri.trim();
|
|
}
|
|
|
|
public String getJsonFace() {
|
|
return (this.jsonFace == null) ? "" : this.jsonFace.trim();
|
|
}
|
|
|
|
public long getNRichieste() {
|
|
return this.nRichieste;
|
|
}
|
|
|
|
public void setUsers(Users newUsers) {
|
|
this.users = newUsers;
|
|
}
|
|
|
|
public Users getUsers() {
|
|
this.users = (Users)getSecondaryObject((DBAdapter)this.users, Users.class,
|
|
|
|
getId_users());
|
|
return this.users;
|
|
}
|
|
}
|