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,36 @@
|
|||
package it.acxent.anag;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.util.Vectumerator;
|
||||
|
||||
public class Rubrica extends Clifor {
|
||||
private static final long serialVersionUID = 1085261265605689583L;
|
||||
|
||||
private long id_rubrica;
|
||||
|
||||
public Rubrica() {}
|
||||
|
||||
public Rubrica(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public String getTableBeanName() {
|
||||
return "CLIFOR";
|
||||
}
|
||||
|
||||
public String getFlgTipo() {
|
||||
return "R";
|
||||
}
|
||||
|
||||
public Vectumerator findByCR(RubricaCR CR, int pageNumber, int pageRows) {
|
||||
return findByCR(CR, pageNumber, pageRows);
|
||||
}
|
||||
|
||||
public long getId_rubrica() {
|
||||
return getId_clifor();
|
||||
}
|
||||
|
||||
public void setId_rubrica(long id_rubrica) {
|
||||
setId_clifor(id_rubrica);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue