80 lines
1.7 KiB
Java
80 lines
1.7 KiB
Java
package it.acxent.anag;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.CRAdapter;
|
|
|
|
public class NazioneCR extends CRAdapter {
|
|
private long id_nazione;
|
|
|
|
private long flgCeeS = -1L;
|
|
|
|
private String id_lingua;
|
|
|
|
private long flgAttivaS = -1L;
|
|
|
|
private long flgGoogleMerchantS = -1L;
|
|
|
|
private long flgPreventivoWwwS = -1L;
|
|
|
|
public NazioneCR(ApplParmFull newApplParmFull) {
|
|
super(newApplParmFull);
|
|
}
|
|
|
|
public NazioneCR() {}
|
|
|
|
public void setId_nazione(long newId_nazione) {
|
|
this.id_nazione = newId_nazione;
|
|
}
|
|
|
|
public void setFlgCeeS(long newFlgCee) {
|
|
this.flgCeeS = newFlgCee;
|
|
}
|
|
|
|
public long getId_nazione() {
|
|
return this.id_nazione;
|
|
}
|
|
|
|
public long getFlgCeeS() {
|
|
return this.flgCeeS;
|
|
}
|
|
|
|
public String getId_lingua() {
|
|
return (this.id_lingua == null) ? AB_EMPTY_STRING : this.id_lingua.trim();
|
|
}
|
|
|
|
public void setId_lingua(String newId_lingua) {
|
|
this.id_lingua = newId_lingua;
|
|
}
|
|
|
|
public long getFlgAttivaS() {
|
|
return this.flgAttivaS;
|
|
}
|
|
|
|
public void setFlgAttivaS(long flgAttivaS) {
|
|
this.flgAttivaS = flgAttivaS;
|
|
}
|
|
|
|
public static final String getCeeS(long l_flgCee) {
|
|
return Nazione.getCee(l_flgCee);
|
|
}
|
|
|
|
public String getCeeS() {
|
|
return Nazione.getCee(getFlgCeeS());
|
|
}
|
|
|
|
public long getFlgGoogleMerchantS() {
|
|
return this.flgGoogleMerchantS;
|
|
}
|
|
|
|
public void setFlgGoogleMerchantS(long flgGoogleMerchant) {
|
|
this.flgGoogleMerchantS = flgGoogleMerchant;
|
|
}
|
|
|
|
public long getFlgPreventivoWwwS() {
|
|
return this.flgPreventivoWwwS;
|
|
}
|
|
|
|
public void setFlgPreventivoWwwS(long flgPreventivoWwwS) {
|
|
this.flgPreventivoWwwS = flgPreventivoWwwS;
|
|
}
|
|
}
|