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,32 @@
|
|||
package it.acxent.face;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class FaceRemotaCR extends CRAdapter {
|
||||
private long id_faceRemota;
|
||||
|
||||
private String md5;
|
||||
|
||||
public FaceRemotaCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public FaceRemotaCR() {}
|
||||
|
||||
public void setId_faceRemota(long newId_faceRemota) {
|
||||
this.id_faceRemota = newId_faceRemota;
|
||||
}
|
||||
|
||||
public void setMd5(String newMd5) {
|
||||
this.md5 = newMd5;
|
||||
}
|
||||
|
||||
public long getId_faceRemota() {
|
||||
return this.id_faceRemota;
|
||||
}
|
||||
|
||||
public String getMd5() {
|
||||
return (this.md5 == null) ? "" : this.md5.trim();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue