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