93 lines
2 KiB
Java
93 lines
2 KiB
Java
package it.acxent.face;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
import java.sql.Date;
|
|
|
|
public class FaceRecognizerCR extends CRAdapter {
|
|
private long id_faceRecognizer;
|
|
|
|
private String flgTIpo;
|
|
|
|
private String codice;
|
|
|
|
private String descrizione;
|
|
|
|
private String sessionId;
|
|
|
|
private String fileName;
|
|
|
|
private long nTrainingImages;
|
|
|
|
private Date dataTraining;
|
|
|
|
public FaceRecognizerCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public FaceRecognizerCR() {}
|
|
|
|
public void setId_faceRecognizer(long newId_faceRecognizer) {
|
|
this.id_faceRecognizer = newId_faceRecognizer;
|
|
}
|
|
|
|
public void setFlgTIpo(String newFlgTIpo) {
|
|
this.flgTIpo = newFlgTIpo;
|
|
}
|
|
|
|
public void setCodice(String newCodice) {
|
|
this.codice = newCodice;
|
|
}
|
|
|
|
public void setDescrizione(String newDescrizione) {
|
|
this.descrizione = newDescrizione;
|
|
}
|
|
|
|
public void setSessionId(String newSessionId) {
|
|
this.sessionId = newSessionId;
|
|
}
|
|
|
|
public void setFileName(String newFileName) {
|
|
this.fileName = newFileName;
|
|
}
|
|
|
|
public void setNTrainingImages(long newNTrainingImages) {
|
|
this.nTrainingImages = newNTrainingImages;
|
|
}
|
|
|
|
public void setDataTraining(Date newDataTraining) {
|
|
this.dataTraining = newDataTraining;
|
|
}
|
|
|
|
public long getId_faceRecognizer() {
|
|
return this.id_faceRecognizer;
|
|
}
|
|
|
|
public String getFlgTIpo() {
|
|
return (this.flgTIpo == null) ? "" : this.flgTIpo.trim();
|
|
}
|
|
|
|
public String getCodice() {
|
|
return (this.codice == null) ? "" : this.codice.trim();
|
|
}
|
|
|
|
public String getDescrizione() {
|
|
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
|
}
|
|
|
|
public String getSessionId() {
|
|
return (this.sessionId == null) ? "" : this.sessionId.trim();
|
|
}
|
|
|
|
public String getFileName() {
|
|
return (this.fileName == null) ? "" : this.fileName.trim();
|
|
}
|
|
|
|
public long getNTrainingImages() {
|
|
return this.nTrainingImages;
|
|
}
|
|
|
|
public Date getDataTraining() {
|
|
return this.dataTraining;
|
|
}
|
|
}
|