Merge Stripe
This commit is contained in:
parent
6fac8ae22a
commit
131196f3fd
|
|
@ -84,9 +84,8 @@ public class ConsultaResource {
|
||||||
try {
|
try {
|
||||||
List resultado = null;
|
List resultado = null;
|
||||||
BodyEntradaConsulta body = entrada.getBodyIn();
|
BodyEntradaConsulta body = entrada.getBodyIn();
|
||||||
resultado = consulta.consultaGenerica(entrada.getHeaderIn(), entrada.getBodyIn().getEntidad(),
|
resultado = consulta.consultaGenerica(entrada.getHeaderIn(), entrada.getBodyIn().getEntidad(), body.getParametros(),
|
||||||
body.getParametros(), body.getMaximoRegistros(), body.getRegistroInicio(), body.getTipoConsulta());
|
body.getOrden(), body.getMaximoRegistros(), body.getRegistroInicio(), body.getTipoConsulta());
|
||||||
|
|
||||||
HeaderMS header = entrada.getHeaderIn();
|
HeaderMS header = entrada.getHeaderIn();
|
||||||
header.setFechaHora(DominioConstantes.getDateTime());
|
header.setFechaHora(DominioConstantes.getDateTime());
|
||||||
salida = ServiceUtil.crearSalidaConsultaOk(header, entrada.getBodyIn().getEntidad(), resultado);
|
salida = ServiceUtil.crearSalidaConsultaOk(header, entrada.getBodyIn().getEntidad(), resultado);
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
*/
|
*/
|
||||||
package com.qsoft.wmp.services.xsd;
|
package com.qsoft.wmp.services.xsd;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -18,6 +19,7 @@ public class BodyEntradaConsulta {
|
||||||
private Integer registroInicio;
|
private Integer registroInicio;
|
||||||
private String entidad;
|
private String entidad;
|
||||||
private Map<String, Object> parametros;
|
private Map<String, Object> parametros;
|
||||||
|
private List<String[]> orden;
|
||||||
|
|
||||||
public Integer getTipoConsulta() {
|
public Integer getTipoConsulta() {
|
||||||
return tipoConsulta;
|
return tipoConsulta;
|
||||||
|
|
@ -57,6 +59,14 @@ public class BodyEntradaConsulta {
|
||||||
|
|
||||||
public void setRegistroInicio(Integer registroInicio) {
|
public void setRegistroInicio(Integer registroInicio) {
|
||||||
this.registroInicio = registroInicio;
|
this.registroInicio = registroInicio;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<String[]> getOrden() {
|
||||||
|
return orden;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOrden(List<String[]> orden) {
|
||||||
|
this.orden = orden;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue