Commit f26f65ff by Alonso Moreno Postigo

[EDIT] PersonaSqlserverDAO - ResponseHelper

parent d03d3150
...@@ -13,9 +13,6 @@ import java.io.Serializable; ...@@ -13,9 +13,6 @@ import java.io.Serializable;
*/ */
public class ResponseHelper implements Serializable { public class ResponseHelper implements Serializable {
private String resultado;
private String mensaje;
private Object data; private Object data;
private boolean status; private boolean status;
private String message; private String message;
...@@ -40,22 +37,6 @@ public class ResponseHelper implements Serializable { ...@@ -40,22 +37,6 @@ public class ResponseHelper implements Serializable {
this.message = message; this.message = message;
} }
public String getResultado() {
return resultado;
}
public void setResultado(String resultado) {
this.resultado = resultado;
}
public String getMensaje() {
return mensaje;
}
public void setMensaje(String mensaje) {
this.mensaje = mensaje;
}
public Object getData() { public Object getData() {
return data; return data;
} }
......
...@@ -240,7 +240,7 @@ function listarPersona() { ...@@ -240,7 +240,7 @@ function listarPersona() {
var json = { var json = {
codigo: data_row.codigo codigo: data_row.codigo
}; };
console.log(data_row.codigo);
swal({ swal({
title: "¿Estás seguro?", title: "¿Estás seguro?",
text: "¿Desea desactivar a " + data_row.apellidos + ", " + data_row.nombres + " ?", text: "¿Desea desactivar a " + data_row.apellidos + ", " + data_row.nombres + " ?",
...@@ -277,7 +277,7 @@ function listarPersona() { ...@@ -277,7 +277,7 @@ function listarPersona() {
var json = { var json = {
codigo: data_row.codigo codigo: data_row.codigo
}; };
console.log(data_row.codigo);
swal({ swal({
title: "¿Estás seguro?", title: "¿Estás seguro?",
text: "¿Desea activar a " + data_row.apellidos + ", " + data_row.nombres + " ?", text: "¿Desea activar a " + data_row.apellidos + ", " + data_row.nombres + " ?",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment