wilian 2017-12-28 19:13:56 +00:00
parent aed0ee4fa3
commit f3c643ebdc
2 changed files with 13 additions and 0 deletions

View File

@ -92,4 +92,7 @@ public class Constantes {
public static final String TEMPO_LIMITE_PEN_PARAM_OCD = "TEMPO_LIMITE_PEN_PARAM_OCD";
public static final String CVESISTEMA_MOTIVO_CANCELAMENTO_ECF = "CANCELAMENTO_ECF";
public static String CLAVE_EDITAR_ALTERA_EXIBECANCEL = "COM.RJCONSULTORES.ADMINISTRACION.GUI.CONFIGURACIONECCOMERCIALES.MOTIVOCANCELACION.ALTERAEXIBECANCEL";
}

View File

@ -47,6 +47,8 @@ public class MotivoCancelacion implements Serializable {
private String txtRelatorio;
@Column(name="CVESISTEMA")
private String cveSistema;
@Column(name="INDEXIBECANCEL")
private Boolean indexibecancel;
public MotivoCancelacion() {
}
@ -143,4 +145,12 @@ public class MotivoCancelacion implements Serializable {
public void setCveSistema(String cveSistema) {
this.cveSistema = cveSistema;
}
public Boolean getIndexibecancel() {
return indexibecancel;
}
public void setIndexibecancel(Boolean indexibecancel) {
this.indexibecancel = indexibecancel;
}
}