35 lines
672 B
Java
35 lines
672 B
Java
package it.acxent.pg;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
|
|
public class UsersCR extends it.acxent.common.UsersCR {
|
|
private long flgMiniature = -1L;
|
|
|
|
private long flgScaduto = -1L;
|
|
|
|
public boolean isCode1() {
|
|
return false;
|
|
}
|
|
|
|
public UsersCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public UsersCR() {}
|
|
|
|
public long getFlgMiniature() {
|
|
return this.flgMiniature;
|
|
}
|
|
|
|
public void setFlgMiniature(long flgMiniature) {
|
|
this.flgMiniature = flgMiniature;
|
|
}
|
|
|
|
public long getFlgScaduto() {
|
|
return this.flgScaduto;
|
|
}
|
|
|
|
public void setFlgScaduto(long flgScaduto) {
|
|
this.flgScaduto = flgScaduto;
|
|
}
|
|
}
|