92 lines
2.2 KiB
Java
92 lines
2.2 KiB
Java
package it.acxent.dm;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
|
|
public class FaceDetectionMethodCR extends CRAdapter {
|
|
private static final long serialVersionUID = -7539345269995197440L;
|
|
|
|
private long id_faceDetectionMethod;
|
|
|
|
private long codice;
|
|
|
|
private String descrizione;
|
|
|
|
private long flgDetectionType = -1L;
|
|
|
|
private String descrizioneLunga;
|
|
|
|
private String pathModello;
|
|
|
|
private long flgBtn = -1L;
|
|
|
|
public static final String getDetectionType(long l_flgDetectionTYpe) {
|
|
return FaceDetectionMethod.getDetectionType(l_flgDetectionTYpe);
|
|
}
|
|
|
|
public final String getDetectionType() {
|
|
return FaceDetectionMethod.getDetectionType(getFlgDetectionType());
|
|
}
|
|
|
|
public FaceDetectionMethodCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public FaceDetectionMethodCR() {}
|
|
|
|
public void setId_faceDetectionMethod(long newId_faceDetectionMethod) {
|
|
this.id_faceDetectionMethod = newId_faceDetectionMethod;
|
|
}
|
|
|
|
public void setCodice(long newCodice) {
|
|
this.codice = newCodice;
|
|
}
|
|
|
|
public void setDescrizione(String newDescrizione) {
|
|
this.descrizione = newDescrizione;
|
|
}
|
|
|
|
public void setFlgDetectionType(long newFlgDectectionType) {
|
|
this.flgDetectionType = newFlgDectectionType;
|
|
}
|
|
|
|
public void setDescrizioneLunga(String newDescrizioneLunga) {
|
|
this.descrizioneLunga = newDescrizioneLunga;
|
|
}
|
|
|
|
public void setPathModello(String newPathModello) {
|
|
this.pathModello = newPathModello;
|
|
}
|
|
|
|
public long getId_faceDetectionMethod() {
|
|
return this.id_faceDetectionMethod;
|
|
}
|
|
|
|
public long getCodice() {
|
|
return this.codice;
|
|
}
|
|
|
|
public String getDescrizione() {
|
|
return (this.descrizione == null) ? "" : this.descrizione.trim();
|
|
}
|
|
|
|
public long getFlgDetectionType() {
|
|
return this.flgDetectionType;
|
|
}
|
|
|
|
public String getDescrizioneLunga() {
|
|
return (this.descrizioneLunga == null) ? "" : this.descrizioneLunga.trim();
|
|
}
|
|
|
|
public String getPathModello() {
|
|
return (this.pathModello == null) ? "" : this.pathModello.trim();
|
|
}
|
|
|
|
public long getFlgBtn() {
|
|
return this.flgBtn;
|
|
}
|
|
|
|
public void setFlgBtn(long flgBtn) {
|
|
this.flgBtn = flgBtn;
|
|
}
|
|
}
|