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,40 @@
|
|||
package it.acxent.anag;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.util.Vectumerator;
|
||||
|
||||
public class Cliente extends Clifor {
|
||||
private static final long serialVersionUID = 486912705000890691L;
|
||||
|
||||
private long id_cliente;
|
||||
|
||||
public Cliente() {}
|
||||
|
||||
public Cliente(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public String getTableBeanName() {
|
||||
return "CLIFOR";
|
||||
}
|
||||
|
||||
public String getFlgTipo() {
|
||||
return "C";
|
||||
}
|
||||
|
||||
public Vectumerator findByCR(ClienteCR CR, int pageNumber, int pageRows) {
|
||||
return findByCR(CR, pageNumber, pageRows);
|
||||
}
|
||||
|
||||
public long getId_cliente() {
|
||||
return getId_clifor();
|
||||
}
|
||||
|
||||
public void setId_cliente(long id_cliente) {
|
||||
setId_clifor(id_cliente);
|
||||
}
|
||||
|
||||
protected String sqlStringfindAll() {
|
||||
return "select * from CLIFOR where id_clifor>1 and flgTipo='C' order by cognome, nome";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue