43 lines
841 B
Java
43 lines
841 B
Java
package it.acxent.face;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
import java.sql.Timestamp;
|
|
|
|
public class SelfieCR extends CRAdapter {
|
|
private long id_selfie;
|
|
|
|
private String md5;
|
|
|
|
private Timestamp tsCreation;
|
|
|
|
public SelfieCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public SelfieCR() {}
|
|
|
|
public void setId_selfie(long newId_selfie) {
|
|
this.id_selfie = newId_selfie;
|
|
}
|
|
|
|
public void setMd5(String newMd5) {
|
|
this.md5 = newMd5;
|
|
}
|
|
|
|
public void setTsCreation(Timestamp newTsCreation) {
|
|
this.tsCreation = newTsCreation;
|
|
}
|
|
|
|
public long getId_selfie() {
|
|
return this.id_selfie;
|
|
}
|
|
|
|
public String getMd5() {
|
|
return (this.md5 == null) ? "" : this.md5.trim();
|
|
}
|
|
|
|
public Timestamp getTsCreation() {
|
|
return this.tsCreation;
|
|
}
|
|
}
|