40 lines
883 B
Java
40 lines
883 B
Java
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";
|
|
}
|
|
}
|